llir-opt
0.0.1
Low-Level Post-Link Optimiser for OCaml and C
Main Page
Namespaces
Namespace List
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
~
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Typedefs
Enumerations
Enumerator
Related Functions
Files
File List
•
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Pages
passes
object_split.h
1
// This file if part of the llir-opt project.
2
// Licensing information can be found in the LICENSE file.
3
// (C) 2018 Nandor Licker. All rights reserved.
4
5
#pragma once
6
7
#include "core/pass.h"
8
9
class
Func
;
10
11
12
16
class
ObjectSplitPass
final :
public
Pass
{
17
public
:
19
static
const
char
*
kPassID
;
20
22
ObjectSplitPass
(
PassManager
*passManager) :
Pass
(passManager) {}
23
25
bool
Run
(
Prog
&prog)
override
;
26
28
const
char
*
GetPassName
()
const override
;
29
};
Func
Definition:
func.h:30
PassManager
Definition:
pass_manager.h:74
Pass
Definition:
pass.h:17
ObjectSplitPass
Definition:
object_split.h:16
ObjectSplitPass::Run
bool Run(Prog &prog) override
Runs the pass.
Definition:
object_split.cpp:125
Prog
Definition:
prog.h:33
ObjectSplitPass::kPassID
static const char * kPassID
Pass identifier.
Definition:
object_split.h:19
ObjectSplitPass::ObjectSplitPass
ObjectSplitPass(PassManager *passManager)
Initialises the pass.
Definition:
object_split.h:22
ObjectSplitPass::GetPassName
const char * GetPassName() const override
Returns the name of the pass.
Definition:
object_split.cpp:23
Generated by
1.8.17