OLD | NEW |
1 //===- llvm/InitializePasses.h -------- Initialize All Passes ---*- C++ -*-===// | 1 //===- llvm/InitializePasses.h -------- Initialize All Passes ---*- 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 // This file contains the declarations for the pass initialization routines | 10 // This file contains the declarations for the pass initialization routines |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 void initializeUnpackMachineBundlesPass(PassRegistry&); | 274 void initializeUnpackMachineBundlesPass(PassRegistry&); |
275 void initializeFinalizeMachineBundlesPass(PassRegistry&); | 275 void initializeFinalizeMachineBundlesPass(PassRegistry&); |
276 void initializeLoopVectorizePass(PassRegistry&); | 276 void initializeLoopVectorizePass(PassRegistry&); |
277 void initializeBBVectorizePass(PassRegistry&); | 277 void initializeBBVectorizePass(PassRegistry&); |
278 void initializeMachineFunctionPrinterPassPass(PassRegistry&); | 278 void initializeMachineFunctionPrinterPassPass(PassRegistry&); |
279 // @LOCALMOD-BEGIN | 279 // @LOCALMOD-BEGIN |
280 void initializeExpandConstantExprPass(PassRegistry&); | 280 void initializeExpandConstantExprPass(PassRegistry&); |
281 void initializeExpandCtorsPass(PassRegistry&); | 281 void initializeExpandCtorsPass(PassRegistry&); |
282 void initializeExpandTlsPass(PassRegistry&); | 282 void initializeExpandTlsPass(PassRegistry&); |
283 void initializeExpandTlsConstantExprPass(PassRegistry&); | 283 void initializeExpandTlsConstantExprPass(PassRegistry&); |
| 284 void initializeExpandVarArgsPass(PassRegistry&); |
284 void initializeNaClCcRewritePass(PassRegistry&); | 285 void initializeNaClCcRewritePass(PassRegistry&); |
285 void initializePNaClABIVerifyModulePass(PassRegistry&); | 286 void initializePNaClABIVerifyModulePass(PassRegistry&); |
286 void initializePNaClABIVerifyFunctionsPass(PassRegistry&); | 287 void initializePNaClABIVerifyFunctionsPass(PassRegistry&); |
287 // @LOCALMOD-END | 288 // @LOCALMOD-END |
288 } | 289 } |
289 | 290 |
290 #endif | 291 #endif |
OLD | NEW |