1//===-- BlackfinMCTargetDesc.h - Blackfin Target Descriptions ---*- 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 provides Blackfin specific target descriptions.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef BLACKFINMCTARGETDESC_H
15#define BLACKFINMCTARGETDESC_H
16
17namespace llvm {
18class MCSubtargetInfo;
19class Target;
20class StringRef;
21
22extern Target TheBlackfinTarget;
23
24} // End llvm namespace
25
26// Defines symbolic names for Blackfin registers.  This defines a mapping from
27// register name to register number.
28#define GET_REGINFO_ENUM
29#include "BlackfinGenRegisterInfo.inc"
30
31// Defines symbolic names for the Blackfin instructions.
32#define GET_INSTRINFO_ENUM
33#include "BlackfinGenInstrInfo.inc"
34
35#define GET_SUBTARGETINFO_ENUM
36#include "BlackfinGenSubtargetInfo.inc"
37
38#endif
39