[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / llvm / lib / CodeGen / GlobalISel / GlobalISel.cpp
blobefcc40641ea80c553a6860979fba6e5613c3d75e
1 //===-- llvm/CodeGen/GlobalISel/GlobalIsel.cpp --- GlobalISel ----*- C++ -*-==//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 /// \file
9 // This file implements the common initialization routines for the
10 // GlobalISel library.
11 //===----------------------------------------------------------------------===//
13 #include "llvm/InitializePasses.h"
15 using namespace llvm;
17 void llvm::initializeGlobalISel(PassRegistry &Registry) {
18 initializeIRTranslatorPass(Registry);
19 initializeLegalizerPass(Registry);
20 initializeLoadStoreOptPass(Registry);
21 initializeLocalizerPass(Registry);
22 initializeRegBankSelectPass(Registry);
23 initializeInstructionSelectPass(Registry);