2001-06-30 04:34:07 +00:00
|
|
|
//===-- llvm/Opt/AllOpts.h - Header file to get all opt passes ---*- C++ -*--=//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-30 04:34:07 +00:00
|
|
|
// Dead Code Elimination
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2001-06-30 04:34:07 +00:00
|
|
|
#include "llvm/Optimizations/DCE.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-06-29 23:56:00 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-30 04:34:07 +00:00
|
|
|
// Constant Propogation
|
2001-06-29 23:56:00 +00:00
|
|
|
//
|
2001-06-30 04:34:07 +00:00
|
|
|
#include "llvm/Optimizations/ConstantProp.h"
|
2001-06-27 23:31:14 +00:00
|
|
|
|
2001-06-29 23:56:00 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Method Inlining Pass
|
|
|
|
//
|
2001-06-30 04:34:07 +00:00
|
|
|
#include "llvm/Optimizations/MethodInlining.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Symbol Stripping Pass
|
|
|
|
//
|
2001-06-30 04:34:07 +00:00
|
|
|
#include "llvm/Optimizations/SymbolStripping.h"
|
2001-06-20 19:26:21 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Induction Variable Cannonicalization
|
|
|
|
//
|
|
|
|
|
2001-06-30 04:34:07 +00:00
|
|
|
#include "llvm/Optimizations/InductionVars.h"
|
2001-06-20 19:26:21 +00:00
|
|
|
|
2001-07-20 19:14:41 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// LevelChange - Code lowering and raising
|
|
|
|
//
|
|
|
|
#include "llvm/Optimizations/LevelChange.h"
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
#endif
|