| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 void initializeInstSimplifierPass(PassRegistry&); | 261 void initializeInstSimplifierPass(PassRegistry&); |
| 262 void initializeUnpackMachineBundlesPass(PassRegistry&); | 262 void initializeUnpackMachineBundlesPass(PassRegistry&); |
| 263 void initializeFinalizeMachineBundlesPass(PassRegistry&); | 263 void initializeFinalizeMachineBundlesPass(PassRegistry&); |
| 264 void initializeLoopVectorizePass(PassRegistry&); | 264 void initializeLoopVectorizePass(PassRegistry&); |
| 265 void initializeSLPVectorizerPass(PassRegistry&); | 265 void initializeSLPVectorizerPass(PassRegistry&); |
| 266 void initializeBBVectorizePass(PassRegistry&); | 266 void initializeBBVectorizePass(PassRegistry&); |
| 267 void initializeMachineFunctionPrinterPassPass(PassRegistry&); | 267 void initializeMachineFunctionPrinterPassPass(PassRegistry&); |
| 268 // @LOCALMOD-BEGIN | 268 // @LOCALMOD-BEGIN |
| 269 void initializeAddPNaClExternalDeclsPass(PassRegistry&); | 269 void initializeAddPNaClExternalDeclsPass(PassRegistry&); |
| 270 void initializeCanonicalizeMemIntrinsicsPass(PassRegistry&); | 270 void initializeCanonicalizeMemIntrinsicsPass(PassRegistry&); |
| 271 void initializeCombineVectorInstructionsPass(PassRegistry&); |
| 271 void initializeConstantInsertExtractElementIndexPass(PassRegistry&); | 272 void initializeConstantInsertExtractElementIndexPass(PassRegistry&); |
| 272 void initializeExpandArithWithOverflowPass(PassRegistry&); | 273 void initializeExpandArithWithOverflowPass(PassRegistry&); |
| 273 void initializeExpandByValPass(PassRegistry&); | 274 void initializeExpandByValPass(PassRegistry&); |
| 274 void initializeExpandConstantExprPass(PassRegistry&); | 275 void initializeExpandConstantExprPass(PassRegistry&); |
| 275 void initializeExpandCtorsPass(PassRegistry&); | 276 void initializeExpandCtorsPass(PassRegistry&); |
| 276 void initializeExpandGetElementPtrPass(PassRegistry&); | 277 void initializeExpandGetElementPtrPass(PassRegistry&); |
| 277 void initializeExpandIndirectBrPass(PassRegistry&); | 278 void initializeExpandIndirectBrPass(PassRegistry&); |
| 278 void initializeExpandShuffleVectorPass(PassRegistry&); | 279 void initializeExpandShuffleVectorPass(PassRegistry&); |
| 279 void initializeExpandSmallArgumentsPass(PassRegistry&); | 280 void initializeExpandSmallArgumentsPass(PassRegistry&); |
| 280 void initializeExpandStructRegsPass(PassRegistry&); | 281 void initializeExpandStructRegsPass(PassRegistry&); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 298 void initializeResolvePNaClIntrinsicsPass(PassRegistry&); | 299 void initializeResolvePNaClIntrinsicsPass(PassRegistry&); |
| 299 void initializeRewriteAtomicsPass(PassRegistry&); | 300 void initializeRewriteAtomicsPass(PassRegistry&); |
| 300 void initializeRewriteLLVMIntrinsicsPass(PassRegistry&); | 301 void initializeRewriteLLVMIntrinsicsPass(PassRegistry&); |
| 301 void initializeRewritePNaClLibraryCallsPass(PassRegistry&); | 302 void initializeRewritePNaClLibraryCallsPass(PassRegistry&); |
| 302 void initializeStripAttributesPass(PassRegistry&); | 303 void initializeStripAttributesPass(PassRegistry&); |
| 303 void initializeStripMetadataPass(PassRegistry&); | 304 void initializeStripMetadataPass(PassRegistry&); |
| 304 // @LOCALMOD-END | 305 // @LOCALMOD-END |
| 305 } | 306 } |
| 306 | 307 |
| 307 #endif | 308 #endif |
| OLD | NEW |