GlobalISel.cpp 941 B

12345678910111213141516171819202122232425
  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. //===----------------------------------------------------------------------===//
  12. #include "llvm/InitializePasses.h"
  13. #include "llvm/PassRegistry.h"
  14. using namespace llvm;
  15. void llvm::initializeGlobalISel(PassRegistry &Registry) {
  16. initializeIRTranslatorPass(Registry);
  17. initializeLegalizerPass(Registry);
  18. initializeLoadStoreOptPass(Registry);
  19. initializeLocalizerPass(Registry);
  20. initializeRegBankSelectPass(Registry);
  21. initializeInstructionSelectPass(Registry);
  22. }