| 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 void initializeUnreachableMachineBlockElimPass(PassRegistry&); | 263 void initializeUnreachableMachineBlockElimPass(PassRegistry&); |
| 264 void initializeVerifierPass(PassRegistry&); | 264 void initializeVerifierPass(PassRegistry&); |
| 265 void initializeVirtRegMapPass(PassRegistry&); | 265 void initializeVirtRegMapPass(PassRegistry&); |
| 266 void initializeVirtRegRewriterPass(PassRegistry&); | 266 void initializeVirtRegRewriterPass(PassRegistry&); |
| 267 void initializeInstSimplifierPass(PassRegistry&); | 267 void initializeInstSimplifierPass(PassRegistry&); |
| 268 void initializeUnpackMachineBundlesPass(PassRegistry&); | 268 void initializeUnpackMachineBundlesPass(PassRegistry&); |
| 269 void initializeFinalizeMachineBundlesPass(PassRegistry&); | 269 void initializeFinalizeMachineBundlesPass(PassRegistry&); |
| 270 void initializeLoopVectorizePass(PassRegistry&); | 270 void initializeLoopVectorizePass(PassRegistry&); |
| 271 void initializeBBVectorizePass(PassRegistry&); | 271 void initializeBBVectorizePass(PassRegistry&); |
| 272 void initializeMachineFunctionPrinterPassPass(PassRegistry&); | 272 void initializeMachineFunctionPrinterPassPass(PassRegistry&); |
| 273 void initializeExpandConstantExprPass(PassRegistry&); // @LOCALMOD |
| 273 void initializeExpandCtorsPass(PassRegistry&); // @LOCALMOD | 274 void initializeExpandCtorsPass(PassRegistry&); // @LOCALMOD |
| 274 void initializeExpandTlsPass(PassRegistry&); // @LOCALMOD | 275 void initializeExpandTlsPass(PassRegistry&); // @LOCALMOD |
| 275 void initializeExpandTlsConstantExprPass(PassRegistry&); // @LOCALMOD | 276 void initializeExpandTlsConstantExprPass(PassRegistry&); // @LOCALMOD |
| 276 void initializeNaClCcRewritePass(PassRegistry&); // @LOCALMOD | 277 void initializeNaClCcRewritePass(PassRegistry&); // @LOCALMOD |
| 277 } | 278 } |
| 278 | 279 |
| 279 #endif | 280 #endif |
| OLD | NEW |