2010-10-07 18:41:20 +00:00
|
|
|
//===-- CodeGen.cpp -------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the common initialization routines for the
|
|
|
|
// CodeGen library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/InitializePasses.h"
|
|
|
|
#include "llvm-c/Initialization.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
/// initializeCodeGen - Initialize all passes linked into the CodeGen library.
|
|
|
|
void llvm::initializeCodeGen(PassRegistry &Registry) {
|
|
|
|
initializeCalculateSpillWeightsPass(Registry);
|
|
|
|
initializeDeadMachineInstructionElimPass(Registry);
|
|
|
|
initializeGCModuleInfoPass(Registry);
|
|
|
|
initializeIfConverterPass(Registry);
|
2010-11-30 02:17:10 +00:00
|
|
|
initializeLiveDebugVariablesPass(Registry);
|
2010-10-07 18:41:20 +00:00
|
|
|
initializeLiveIntervalsPass(Registry);
|
|
|
|
initializeLiveStacksPass(Registry);
|
|
|
|
initializeLiveVariablesPass(Registry);
|
|
|
|
initializeMachineCSEPass(Registry);
|
|
|
|
initializeMachineDominatorTreePass(Registry);
|
|
|
|
initializeMachineLICMPass(Registry);
|
|
|
|
initializeMachineLoopInfoPass(Registry);
|
|
|
|
initializeMachineModuleInfoPass(Registry);
|
|
|
|
initializeMachineSinkingPass(Registry);
|
|
|
|
initializeMachineVerifierPassPass(Registry);
|
|
|
|
initializeOptimizePHIsPass(Registry);
|
|
|
|
initializePHIEliminationPass(Registry);
|
|
|
|
initializePeepholeOptimizerPass(Registry);
|
|
|
|
initializePreAllocSplittingPass(Registry);
|
|
|
|
initializeProcessImplicitDefsPass(Registry);
|
|
|
|
initializePEIPass(Registry);
|
|
|
|
initializeRALinScanPass(Registry);
|
|
|
|
initializeRegisterCoalescerAnalysisGroup(Registry);
|
|
|
|
initializeRenderMachineFunctionPass(Registry);
|
|
|
|
initializeSimpleRegisterCoalescingPass(Registry);
|
|
|
|
initializeSlotIndexesPass(Registry);
|
|
|
|
initializeLoopSplitterPass(Registry);
|
|
|
|
initializeStackProtectorPass(Registry);
|
|
|
|
initializeStackSlotColoringPass(Registry);
|
|
|
|
initializeStrongPHIEliminationPass(Registry);
|
|
|
|
initializeTwoAddressInstructionPassPass(Registry);
|
|
|
|
initializeUnreachableBlockElimPass(Registry);
|
|
|
|
initializeUnreachableMachineBlockElimPass(Registry);
|
|
|
|
initializeVirtRegMapPass(Registry);
|
2010-10-19 17:21:58 +00:00
|
|
|
initializeLowerIntrinsicsPass(Registry);
|
2010-10-07 18:41:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMInitializeCodeGen(LLVMPassRegistryRef R) {
|
|
|
|
initializeCodeGen(*unwrap(R));
|
|
|
|
}
|