2016-03-08 09:38:55 +08:00
|
|
|
//===-- llvm/CodeGen/GlobalISel/GlobalIsel.cpp --- GlobalISel ----*- C++ -*-==//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// \file
|
|
|
|
// This file implements the common initialization routines for the
|
|
|
|
// GlobalISel library.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/InitializePasses.h"
|
|
|
|
#include "llvm/PassRegistry.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
void llvm::initializeGlobalISel(PassRegistry &Registry) {
|
|
|
|
initializeIRTranslatorPass(Registry);
|
2016-10-15 06:18:18 +08:00
|
|
|
initializeLegalizerPass(Registry);
|
2017-05-27 09:34:00 +08:00
|
|
|
initializeLocalizerPass(Registry);
|
2016-04-06 03:06:01 +08:00
|
|
|
initializeRegBankSelectPass(Registry);
|
2016-07-27 22:31:55 +08:00
|
|
|
initializeInstructionSelectPass(Registry);
|
2016-03-08 09:38:55 +08:00
|
|
|
}
|