blob: f6256defe5d3033c50cb1b00a7dea8c41e44217e [file] [log] [blame]
Jeff Vander Stoep247d86b2020-08-11 14:27:44 +02001//===-- RISCVLegalizerInfo.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 Machinelegalizer class for RISCV.
10/// \todo This should be generated by TableGen.
11//===----------------------------------------------------------------------===//
12
13#include "RISCVLegalizerInfo.h"
14#include "llvm/CodeGen/TargetOpcodes.h"
15#include "llvm/CodeGen/ValueTypes.h"
16#include "llvm/IR/DerivedTypes.h"
17#include "llvm/IR/Type.h"
18
19using namespace llvm;
20
21RISCVLegalizerInfo::RISCVLegalizerInfo(const RISCVSubtarget &ST) {
Chris Wailesbcf972c2021-10-21 11:03:28 -070022 getLegacyLegalizerInfo().computeTables();
Jeff Vander Stoep247d86b2020-08-11 14:27:44 +020023}