RISCVRegisterBankInfo.cpp 1013 B

12345678910111213141516171819202122232425
  1. //===-- RISCVRegisterBankInfo.cpp -------------------------------*- 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 targeting of the RegisterBankInfo class for RISCV.
  10. /// \todo This should be generated by TableGen.
  11. //===----------------------------------------------------------------------===//
  12. #include "RISCVRegisterBankInfo.h"
  13. #include "MCTargetDesc/RISCVMCTargetDesc.h"
  14. #include "llvm/CodeGen/MachineRegisterInfo.h"
  15. #include "llvm/CodeGen/RegisterBank.h"
  16. #include "llvm/CodeGen/RegisterBankInfo.h"
  17. #include "llvm/CodeGen/TargetRegisterInfo.h"
  18. #define GET_TARGET_REGBANK_IMPL
  19. #include "RISCVGenRegisterBank.inc"
  20. using namespace llvm;
  21. RISCVRegisterBankInfo::RISCVRegisterBankInfo(const TargetRegisterInfo &TRI) {}