summaryrefslogtreecommitdiff
path: root/include/llvm/Optimizations/AllOpts.h
blob: 4add7137654fcfe039f60cadc47cfabec989c587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//===-- llvm/Opt/AllOpts.h - Header file to get all opt passes ---*- C++ -*--=//
//
// This file #include's all of the small optimization header files.
//
// Note that all optimizations return true if they modified the program, false
// if not.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_OPT_ALLOPTS_H
#define LLVM_OPT_ALLOPTS_H


//===----------------------------------------------------------------------===//
// Dead Code Elimination
//
#include "llvm/Optimizations/DCE.h"


//===----------------------------------------------------------------------===//
// Constant Propogation
//
#include "llvm/Optimizations/ConstantProp.h"


//===----------------------------------------------------------------------===//
// Method Inlining Pass
//
#include "llvm/Optimizations/MethodInlining.h"

//===----------------------------------------------------------------------===//
// Symbol Stripping Pass
//
#include "llvm/Optimizations/SymbolStripping.h"

//===----------------------------------------------------------------------===//
// Induction Variable Cannonicalization
//

#include "llvm/Optimizations/InductionVars.h"

//===----------------------------------------------------------------------===//
// LevelChange - Code lowering and raising
//
#include "llvm/Optimizations/LevelChange.h"

#endif