xref: /minix3/minix/llvm/passes/include/pass.h (revision bdb565187c0f1a04513dd488df843317b27f86c8)
1 
2 #ifndef _PASS_H
3 #define _PASS_H
4 
5 #include <set>
6 #include <map>
7 
8 #include <llvm/Pass.h>
9 #include <llvm/Support/raw_ostream.h>
10 #include <llvm/Analysis/AliasAnalysis.h>
11 
12 #include <llvm/Support/Debug.h>
13 #include <llvm/Transforms/Utils/Cloning.h>
14 #include <llvm/ADT/Statistic.h>
15 
16 #include <llvm/Support/Regex.h>
17 #include <llvm/IR/CallSite.h>
18 #include <llvm/Support/CommandLine.h>
19 #include <llvm/Analysis/LoopInfo.h>
20 
21 #include <llvm/IR/InstIterator.h>
22 #include <llvm/Transforms/Utils/Local.h>
23 
24 #include <llvm/Transforms/Scalar.h>
25 
26 #include <cstdio>
27 #include <cstdlib>
28 #include <iostream>
29 #include <sstream>
30 #include <string>
31 
32 #include <common/pass_common.h>
33 
34 #endif /* _PASS_H */
35