1*e8d8bef9SDimitry Andric //===- PPCLegalizerInfo.h ----------------------------------------*- C++ -*-==// 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 Machinelegalizer class for PowerPC 10*e8d8bef9SDimitry Andric //===----------------------------------------------------------------------===// 11*e8d8bef9SDimitry Andric 12*e8d8bef9SDimitry Andric #include "PPCLegalizerInfo.h" 13*e8d8bef9SDimitry Andric #include "llvm/Support/Debug.h" 14*e8d8bef9SDimitry Andric 15*e8d8bef9SDimitry Andric #define DEBUG_TYPE "ppc-legalinfo" 16*e8d8bef9SDimitry Andric 17*e8d8bef9SDimitry Andric using namespace llvm; 18*e8d8bef9SDimitry Andric using namespace LegalizeActions; 19*e8d8bef9SDimitry Andric 20*e8d8bef9SDimitry Andric PPCLegalizerInfo::PPCLegalizerInfo(const PPCSubtarget &ST) { computeTables(); } 21