Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 1 | //===-- RISCVTargetMachine.h - Define TargetMachine for RISCV ---*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame^] | 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 |
Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file declares the RISCV specific subclass of TargetMachine. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #ifndef LLVM_LIB_TARGET_RISCV_RISCVTARGETMACHINE_H |
| 14 | #define LLVM_LIB_TARGET_RISCV_RISCVTARGETMACHINE_H |
| 15 | |
Alex Bradbury | 6b2cca7 | 2016-11-01 23:47:30 +0000 | [diff] [blame] | 16 | #include "MCTargetDesc/RISCVMCTargetDesc.h" |
Alex Bradbury | 8971842 | 2017-10-19 21:37:38 +0000 | [diff] [blame] | 17 | #include "RISCVSubtarget.h" |
Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/SelectionDAGTargetInfo.h" |
Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 19 | #include "llvm/IR/DataLayout.h" |
Alex Bradbury | 6b2cca7 | 2016-11-01 23:47:30 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetMachine.h" |
Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 21 | |
| 22 | namespace llvm { |
Matthias Braun | bb8507e | 2017-10-12 22:57:28 +0000 | [diff] [blame] | 23 | class RISCVTargetMachine : public LLVMTargetMachine { |
Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 24 | std::unique_ptr<TargetLoweringObjectFile> TLOF; |
Alex Bradbury | 8971842 | 2017-10-19 21:37:38 +0000 | [diff] [blame] | 25 | RISCVSubtarget Subtarget; |
Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 26 | |
| 27 | public: |
| 28 | RISCVTargetMachine(const Target &T, const Triple &TT, StringRef CPU, |
| 29 | StringRef FS, const TargetOptions &Options, |
Rafael Espindola | 79e238a | 2017-08-03 02:16:21 +0000 | [diff] [blame] | 30 | Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, |
| 31 | CodeGenOpt::Level OL, bool JIT); |
Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 32 | |
Alex Bradbury | 8971842 | 2017-10-19 21:37:38 +0000 | [diff] [blame] | 33 | const RISCVSubtarget *getSubtargetImpl(const Function &) const override { |
| 34 | return &Subtarget; |
| 35 | } |
| 36 | |
Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 37 | TargetPassConfig *createPassConfig(PassManagerBase &PM) override; |
| 38 | |
| 39 | TargetLoweringObjectFile *getObjFileLowering() const override { |
| 40 | return TLOF.get(); |
| 41 | } |
| 42 | }; |
Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | #endif |