mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-14 14:10:00 +00:00

And implement it for AArch64, supporting x/w ADD/OR. Differential Revision: https://reviews.llvm.org/D22373 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@276875 91177308-0d34-0410-b5e6-96231b3b80d8
33 lines
979 B
C++
33 lines
979 B
C++
//===-- 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;
|
|
|
|
#ifndef LLVM_BUILD_GLOBAL_ISEL
|
|
|
|
void llvm::initializeGlobalISel(PassRegistry &Registry) {
|
|
}
|
|
|
|
#else
|
|
|
|
void llvm::initializeGlobalISel(PassRegistry &Registry) {
|
|
initializeIRTranslatorPass(Registry);
|
|
initializeMachineLegalizePassPass(Registry);
|
|
initializeRegBankSelectPass(Registry);
|
|
initializeInstructionSelectPass(Registry);
|
|
}
|
|
#endif // LLVM_BUILD_GLOBAL_ISEL
|