MimIR 0.1
MimIR is my Intermediate Representation
Loading...
Searching...
No Matches
alloc2malloc.h
Go to the documentation of this file.
1#pragma once
2
3#include <mim/pass/pass.h>
4
5namespace mim::plug::mem {
6
7class Alloc2Malloc : public RWPass<Alloc2Malloc, Lam> {
8public:
10 : RWPass(man, "alloc2malloc") {}
11
12 Ref rewrite(Ref) override;
13};
14
15} // namespace mim::plug::mem
An optimizer that combines several optimizations in an optimal way.
Definition pass.h:107
PassMan & man()
Definition pass.h:30
Inherit from this class using CRTP, if your Pass does not need state and a fixed-point iteration.
Definition pass.h:220
Helper class to retrieve Infer::arg if present.
Definition def.h:85
The mem Plugin
Definition mem.h:10