LLVM API Documentation
00001 //===-- HexagonMCTargetDesc.h - Hexagon 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 Hexagon specific target descriptions. 00011 // 00012 //===----------------------------------------------------------------------===// 00013 00014 #ifndef LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONMCTARGETDESC_H 00015 #define LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONMCTARGETDESC_H 00016 00017 namespace llvm { 00018 class MCSubtargetInfo; 00019 class Target; 00020 00021 extern Target TheHexagonTarget; 00022 00023 } // End llvm namespace 00024 00025 // Define symbolic names for Hexagon registers. This defines a mapping from 00026 // register name to register number. 00027 // 00028 #define GET_REGINFO_ENUM 00029 #include "HexagonGenRegisterInfo.inc" 00030 00031 // Defines symbolic names for the Hexagon instructions. 00032 // 00033 #define GET_INSTRINFO_ENUM 00034 #include "HexagonGenInstrInfo.inc" 00035 00036 #define GET_SUBTARGETINFO_ENUM 00037 #include "HexagonGenSubtargetInfo.inc" 00038 00039 #endif