LLVM API Documentation
00001 //===-- MSP430MCTargetDesc.h - MSP430 Target Descriptions -------*- C++ -*-===// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // 00010 // This file provides MSP430 specific target descriptions. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #ifndef LLVM_LIB_TARGET_MSP430_MCTARGETDESC_MSP430MCTARGETDESC_H 00015 #define LLVM_LIB_TARGET_MSP430_MCTARGETDESC_MSP430MCTARGETDESC_H 00016 00017 namespace llvm { 00018 class Target; 00019 00020 extern Target TheMSP430Target; 00021 00022 } // End llvm namespace 00023 00024 // Defines symbolic names for MSP430 registers. 00025 // This defines a mapping from register name to register number. 00026 #define GET_REGINFO_ENUM 00027 #include "MSP430GenRegisterInfo.inc" 00028 00029 // Defines symbolic names for the MSP430 instructions. 00030 #define GET_INSTRINFO_ENUM 00031 #include "MSP430GenInstrInfo.inc" 00032 00033 #define GET_SUBTARGETINFO_ENUM 00034 #include "MSP430GenSubtargetInfo.inc" 00035 00036 #endif