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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 void initializeVirtRegMapPass(PassRegistry&); | 271 void initializeVirtRegMapPass(PassRegistry&); |
272 void initializeVirtRegRewriterPass(PassRegistry&); | 272 void initializeVirtRegRewriterPass(PassRegistry&); |
273 void initializeInstSimplifierPass(PassRegistry&); | 273 void initializeInstSimplifierPass(PassRegistry&); |
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 initializeAddPNaClExternalDeclsPass(PassRegistry&); | 280 void initializeAddPNaClExternalDeclsPass(PassRegistry&); |
| 281 void initializeExpandArithWithOverflowPass(PassRegistry&); |
281 void initializeExpandByValPass(PassRegistry&); | 282 void initializeExpandByValPass(PassRegistry&); |
282 void initializeExpandConstantExprPass(PassRegistry&); | 283 void initializeExpandConstantExprPass(PassRegistry&); |
283 void initializeExpandCtorsPass(PassRegistry&); | 284 void initializeExpandCtorsPass(PassRegistry&); |
284 void initializeExpandGetElementPtrPass(PassRegistry&); | 285 void initializeExpandGetElementPtrPass(PassRegistry&); |
285 void initializeExpandMulWithOverflowPass(PassRegistry&); | |
286 void initializeExpandTlsConstantExprPass(PassRegistry&); | 286 void initializeExpandTlsConstantExprPass(PassRegistry&); |
287 void initializeExpandTlsPass(PassRegistry&); | 287 void initializeExpandTlsPass(PassRegistry&); |
288 void initializeExpandVarArgsPass(PassRegistry&); | 288 void initializeExpandVarArgsPass(PassRegistry&); |
289 void initializeFlattenGlobalsPass(PassRegistry&); | 289 void initializeFlattenGlobalsPass(PassRegistry&); |
290 void initializeGlobalCleanupPass(PassRegistry&); | 290 void initializeGlobalCleanupPass(PassRegistry&); |
291 void initializeInsertDivideCheckPass(PassRegistry&); | 291 void initializeInsertDivideCheckPass(PassRegistry&); |
292 void initializeNaClCcRewritePass(PassRegistry&); | 292 void initializeNaClCcRewritePass(PassRegistry&); |
293 void initializePNaClABIVerifyModulePass(PassRegistry&); | 293 void initializePNaClABIVerifyModulePass(PassRegistry&); |
294 void initializePNaClABIVerifyFunctionsPass(PassRegistry&); | 294 void initializePNaClABIVerifyFunctionsPass(PassRegistry&); |
295 void initializePromoteIntegersPass(PassRegistry&); | 295 void initializePromoteIntegersPass(PassRegistry&); |
296 void initializeReplacePtrsWithIntsPass(PassRegistry&); | 296 void initializeReplacePtrsWithIntsPass(PassRegistry&); |
297 void initializeResolveAliasesPass(PassRegistry&); | 297 void initializeResolveAliasesPass(PassRegistry&); |
298 void initializeResolvePNaClIntrinsicsPass(PassRegistry&); | 298 void initializeResolvePNaClIntrinsicsPass(PassRegistry&); |
299 void initializeRewritePNaClLibraryCallsPass(PassRegistry&); | 299 void initializeRewritePNaClLibraryCallsPass(PassRegistry&); |
300 void initializeStripMetadataPass(PassRegistry&); | 300 void initializeStripMetadataPass(PassRegistry&); |
301 // @LOCALMOD-END | 301 // @LOCALMOD-END |
302 } | 302 } |
303 | 303 |
304 #endif | 304 #endif |
OLD | NEW |