1*e8d8bef9SDimitry Andric //===- PPCRegisterBankInfo.cpp --------------------------------------------===// 2*e8d8bef9SDimitry Andric // 3*e8d8bef9SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*e8d8bef9SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 5*e8d8bef9SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*e8d8bef9SDimitry Andric // 7*e8d8bef9SDimitry Andric //===----------------------------------------------------------------------===// 8*e8d8bef9SDimitry Andric /// \file 9*e8d8bef9SDimitry Andric /// This file implements the targeting of the RegisterBankInfo class for 10*e8d8bef9SDimitry Andric /// PowerPC. 11*e8d8bef9SDimitry Andric //===----------------------------------------------------------------------===// 12*e8d8bef9SDimitry Andric 13*e8d8bef9SDimitry Andric #include "PPCRegisterBankInfo.h" 14*e8d8bef9SDimitry Andric #include "PPCRegisterInfo.h" 15*e8d8bef9SDimitry Andric #include "llvm/CodeGen/MachineFunction.h" 16*e8d8bef9SDimitry Andric #include "llvm/CodeGen/MachineRegisterInfo.h" 17*e8d8bef9SDimitry Andric #include "llvm/Support/Debug.h" 18*e8d8bef9SDimitry Andric 19*e8d8bef9SDimitry Andric #define DEBUG_TYPE "ppc-reg-bank-info" 20*e8d8bef9SDimitry Andric 21*e8d8bef9SDimitry Andric #define GET_TARGET_REGBANK_IMPL 22*e8d8bef9SDimitry Andric #include "PPCGenRegisterBank.inc" 23*e8d8bef9SDimitry Andric 24*e8d8bef9SDimitry Andric using namespace llvm; 25*e8d8bef9SDimitry Andric 26*e8d8bef9SDimitry Andric PPCRegisterBankInfo::PPCRegisterBankInfo(const TargetRegisterInfo &TRI) 27*e8d8bef9SDimitry Andric : PPCGenRegisterBankInfo() {} 28