1//===-- MSP430MCTargetDesc.h - MSP430 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 MSP430 specific target descriptions.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef MSP430MCTARGETDESC_H
15#define MSP430MCTARGETDESC_H
16
17namespace llvm {
18class Target;
19
20extern Target TheMSP430Target;
21
22} // End llvm namespace
23
24// Defines symbolic names for MSP430 registers.
25// This defines a mapping from register name to register number.
26#define GET_REGINFO_ENUM
27#include "MSP430GenRegisterInfo.inc"
28
29// Defines symbolic names for the MSP430 instructions.
30#define GET_INSTRINFO_ENUM
31#include "MSP430GenInstrInfo.inc"
32
33#define GET_SUBTARGETINFO_ENUM
34#include "MSP430GenSubtargetInfo.inc"
35
36#endif
37