OLD | NEW |
1 //===-- NaCl.h - NaCl Transformations ---------------------------*- C++ -*-===// | 1 //===-- NaCl.h - NaCl Transformations ---------------------------*- C++ -*-===// |
2 // | 2 // |
3 // The LLVM Compiler Infrastructure | 3 // The LLVM Compiler Infrastructure |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 | 9 |
10 #ifndef LLVM_TRANSFORMS_NACL_H | 10 #ifndef LLVM_TRANSFORMS_NACL_H |
(...skipping 12 matching lines...) Expand all Loading... |
23 FunctionPass *createExpandConstantExprPass(); | 23 FunctionPass *createExpandConstantExprPass(); |
24 ModulePass *createExpandCtorsPass(); | 24 ModulePass *createExpandCtorsPass(); |
25 BasicBlockPass *createExpandGetElementPtrPass(); | 25 BasicBlockPass *createExpandGetElementPtrPass(); |
26 ModulePass *createExpandTlsPass(); | 26 ModulePass *createExpandTlsPass(); |
27 ModulePass *createExpandTlsConstantExprPass(); | 27 ModulePass *createExpandTlsConstantExprPass(); |
28 ModulePass *createExpandVarArgsPass(); | 28 ModulePass *createExpandVarArgsPass(); |
29 ModulePass *createFlattenGlobalsPass(); | 29 ModulePass *createFlattenGlobalsPass(); |
30 ModulePass *createGlobalCleanupPass(); | 30 ModulePass *createGlobalCleanupPass(); |
31 ModulePass *createResolveAliasesPass(); | 31 ModulePass *createResolveAliasesPass(); |
32 ModulePass *createStripMetadataPass(); | 32 ModulePass *createStripMetadataPass(); |
| 33 FunctionPass *createInsertDivideCheckPass(); |
33 | 34 |
34 Instruction *PhiSafeInsertPt(Use *U); | 35 Instruction *PhiSafeInsertPt(Use *U); |
35 void PhiSafeReplaceUses(Use *U, Value *NewVal); | 36 void PhiSafeReplaceUses(Use *U, Value *NewVal); |
36 | 37 |
37 } | 38 } |
38 | 39 |
39 #endif | 40 #endif |
OLD | NEW |