1 //===-- AVRMCTargetDesc.h - AVR Target Descriptions -------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // This file provides AVR specific target descriptions.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_AVR_MCTARGET_DESC_H
14 #define LLVM_AVR_MCTARGET_DESC_H
16 #include "llvm/Support/DataTypes.h"
26 class MCObjectTargetWriter
;
28 class MCSubtargetInfo
;
29 class MCTargetOptions
;
33 class raw_pwrite_stream
;
35 MCInstrInfo
*createAVRMCInstrInfo();
37 /// Creates a machine code emitter for AVR.
38 MCCodeEmitter
*createAVRMCCodeEmitter(const MCInstrInfo
&MCII
,
39 const MCRegisterInfo
&MRI
,
42 /// Creates an assembly backend for AVR.
43 MCAsmBackend
*createAVRAsmBackend(const Target
&T
, const MCSubtargetInfo
&STI
,
44 const MCRegisterInfo
&MRI
,
45 const llvm::MCTargetOptions
&TO
);
47 /// Creates an ELF object writer for AVR.
48 std::unique_ptr
<MCObjectTargetWriter
> createAVRELFObjectWriter(uint8_t OSABI
);
50 } // end namespace llvm
52 #define GET_REGINFO_ENUM
53 #include "AVRGenRegisterInfo.inc"
55 #define GET_INSTRINFO_ENUM
56 #include "AVRGenInstrInfo.inc"
58 #define GET_SUBTARGETINFO_ENUM
59 #include "AVRGenSubtargetInfo.inc"
61 #endif // LLVM_AVR_MCTARGET_DESC_H