Thorin 1.9.0
The Higher ORder INtermediate representation
Loading...
Searching...
No Matches
ret_wrap.h
Go to the documentation of this file.
1#pragma once
2
3#include "thorin/pass/pass.h"
4
5namespace thorin {
6
7class RetWrap : public RWPass<RetWrap, Lam> {
8public:
10 : RWPass(man, "ret_wrap") {}
11
12 void enter() override;
13};
14
15} // namespace thorin
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
RetWrap(PassMan &man)
Definition ret_wrap.h:9
void enter() override
Invoked just before Pass::rewriteing PassMan::curr_mut's body.
Definition ret_wrap.cpp:5
Definition cfg.h:11