blob: b4dd4efe0f92dd8c42827e6716df7dfcd6c2810c [file] [log] [blame]
Alex Bradburyb2e54722016-11-01 17:27:54 +00001//===-- 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
17#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
18#include "llvm/Target/TargetMachine.h"
19#include "llvm/IR/DataLayout.h"
20
21namespace llvm {
22class RISCVTargetMachine : public LLVMTargetMachine {
23 std::unique_ptr<TargetLoweringObjectFile> TLOF;
24
25public:
26 RISCVTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
27 StringRef FS, const TargetOptions &Options,
28 Optional<Reloc::Model> RM, CodeModel::Model CM,
29 CodeGenOpt::Level OL);
30
31 TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
32
33 TargetLoweringObjectFile *getObjFileLowering() const override {
34 return TLOF.get();
35 }
36};
37Target &getTheRISCV32Target();
38Target &getTheRISCV64Target();
39}
40
41#endif