1//===-- AVRMCTargetDesc.h - AVR Target Descriptions -------------*- 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//
9// This file provides AVR specific target descriptions.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_AVR_MCTARGET_DESC_H
14#define LLVM_AVR_MCTARGET_DESC_H
15
16#include "llvm/Support/DataTypes.h"
17
18#include <memory>
19
20namespace llvm {
21
22class MCAsmBackend;
23class MCCodeEmitter;
24class MCContext;
25class MCInstrInfo;
26class MCObjectTargetWriter;
27class MCRegisterInfo;
28class MCSubtargetInfo;
29class MCTargetOptions;
30class StringRef;
31class Target;
32class Triple;
33class raw_pwrite_stream;
34
35MCInstrInfo *createAVRMCInstrInfo();
36
37/// Creates a machine code emitter for AVR.
38MCCodeEmitter *createAVRMCCodeEmitter(const MCInstrInfo &MCII,
39                                      const MCRegisterInfo &MRI,
40                                      MCContext &Ctx);
41
42/// Creates an assembly backend for AVR.
43MCAsmBackend *createAVRAsmBackend(const Target &T, const MCSubtargetInfo &STI,
44                                  const MCRegisterInfo &MRI,
45                                  const llvm::MCTargetOptions &TO);
46
47/// Creates an ELF object writer for AVR.
48std::unique_ptr<MCObjectTargetWriter> createAVRELFObjectWriter(uint8_t OSABI);
49
50} // end namespace llvm
51
52#define GET_REGINFO_ENUM
53#include "AVRGenRegisterInfo.inc"
54
55#define GET_INSTRINFO_ENUM
56#include "AVRGenInstrInfo.inc"
57
58#define GET_SUBTARGETINFO_ENUM
59#include "AVRGenSubtargetInfo.inc"
60
61#endif // LLVM_AVR_MCTARGET_DESC_H
62