Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 1 | //===-- RISCVTargetMachine.h - Define TargetMachine for RISCV ---*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file declares the RISCV specific subclass of TargetMachine. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_LIB_TARGET_RISCV_RISCVTARGETMACHINE_H |
| 15 | #define LLVM_LIB_TARGET_RISCV_RISCVTARGETMACHINE_H |
| 16 | |
Alex Bradbury | 6b2cca7 | 2016-11-01 23:47:30 +0000 | [diff] [blame] | 17 | #include "MCTargetDesc/RISCVMCTargetDesc.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; |
| 25 | |
| 26 | public: |
| 27 | RISCVTargetMachine(const Target &T, const Triple &TT, StringRef CPU, |
| 28 | StringRef FS, const TargetOptions &Options, |
Rafael Espindola | 79e238a | 2017-08-03 02:16:21 +0000 | [diff] [blame] | 29 | Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, |
| 30 | CodeGenOpt::Level OL, bool JIT); |
Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 31 | |
| 32 | TargetPassConfig *createPassConfig(PassManagerBase &PM) override; |
| 33 | |
| 34 | TargetLoweringObjectFile *getObjFileLowering() const override { |
| 35 | return TLOF.get(); |
| 36 | } |
| 37 | }; |
Alex Bradbury | b2e5472 | 2016-11-01 17:27:54 +0000 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | #endif |