RISCVLegalizerInfo.cpp 895 B

1234567891011121314151617181920212223
  1. //===-- 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. #include "RISCVLegalizerInfo.h"
  13. #include "llvm/CodeGen/TargetOpcodes.h"
  14. #include "llvm/CodeGen/ValueTypes.h"
  15. #include "llvm/IR/DerivedTypes.h"
  16. #include "llvm/IR/Type.h"
  17. using namespace llvm;
  18. RISCVLegalizerInfo::RISCVLegalizerInfo(const RISCVSubtarget &ST) {
  19. getLegacyLegalizerInfo().computeTables();
  20. }