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 11 matching lines...) Expand all Loading... |
22 ModulePass *createExpandByValPass(); | 22 ModulePass *createExpandByValPass(); |
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 *createRewritePNaClLibraryCallsPass(); |
32 ModulePass *createStripMetadataPass(); | 33 ModulePass *createStripMetadataPass(); |
33 FunctionPass *createInsertDivideCheckPass(); | 34 FunctionPass *createInsertDivideCheckPass(); |
34 | 35 |
35 Instruction *PhiSafeInsertPt(Use *U); | 36 Instruction *PhiSafeInsertPt(Use *U); |
36 void PhiSafeReplaceUses(Use *U, Value *NewVal); | 37 void PhiSafeReplaceUses(Use *U, Value *NewVal); |
37 | 38 |
38 } | 39 } |
39 | 40 |
40 #endif | 41 #endif |
OLD | NEW |