blob: f9015c8741ea858b7e139c2b9916f8aae7c06575 [file] [log] [blame]
Dylan McKay6d8078f2016-05-06 10:12:31 +00001//===-- AVRTargetMachine.h - Define TargetMachine for AVR -------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Dylan McKay6d8078f2016-05-06 10:12:31 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file declares the AVR specific subclass of TargetMachine.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_AVR_TARGET_MACHINE_H
14#define LLVM_AVR_TARGET_MACHINE_H
15
Dylan McKay6d8078f2016-05-06 10:12:31 +000016#include "llvm/IR/DataLayout.h"
17#include "llvm/Target/TargetMachine.h"
18
19#include "AVRFrameLowering.h"
20#include "AVRISelLowering.h"
21#include "AVRInstrInfo.h"
22#include "AVRSelectionDAGInfo.h"
23#include "AVRSubtarget.h"
24
25namespace llvm {
26
Dylan McKayd56676e2016-05-18 09:43:01 +000027/// A generic AVR implementation.
Matthias Braunbb8507e2017-10-12 22:57:28 +000028class AVRTargetMachine : public LLVMTargetMachine {
Dylan McKay6d8078f2016-05-06 10:12:31 +000029public:
30 AVRTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
Dylan McKay05474472017-08-04 05:48:20 +000031 StringRef FS, const TargetOptions &Options,
Matthias Braunbb8507e2017-10-12 22:57:28 +000032 Optional<Reloc::Model> RM,
33 Optional<CodeModel::Model> CM,
Dylan McKay05474472017-08-04 05:48:20 +000034 CodeGenOpt::Level OL, bool JIT);
Dylan McKay6d8078f2016-05-06 10:12:31 +000035
36 const AVRSubtarget *getSubtargetImpl() const;
37 const AVRSubtarget *getSubtargetImpl(const Function &) const override;
38
39 TargetLoweringObjectFile *getObjFileLowering() const override {
40 return this->TLOF.get();
41 }
42
Dylan McKay6d8078f2016-05-06 10:12:31 +000043 TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
44
Matthias Braund6a36ae2017-05-31 18:41:23 +000045 bool isMachineVerifierClean() const override {
46 return false;
47 }
48
Dylan McKay6d8078f2016-05-06 10:12:31 +000049private:
50 std::unique_ptr<TargetLoweringObjectFile> TLOF;
51 AVRSubtarget SubTarget;
52};
53
54} // end namespace llvm
55
56#endif // LLVM_AVR_TARGET_MACHINE_H