1 //===- ARCMCTargetDesc.h - ARC 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 ARC specific target descriptions. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #ifndef LLVM_LIB_TARGET_ARC_MCTARGETDESC_ARCMCTARGETDESC_H 15 #define LLVM_LIB_TARGET_ARC_MCTARGETDESC_ARCMCTARGETDESC_H 16 17 #include "llvm/Support/DataTypes.h" 18 19 namespace llvm { 20 21 class Target; 22 23 Target &getTheARCTarget(); 24 25 } // end namespace llvm 26 27 // Defines symbolic names for ARC registers. This defines a mapping from 28 // register name to register number. 29 #define GET_REGINFO_ENUM 30 #include "ARCGenRegisterInfo.inc" 31 32 // Defines symbolic names for the ARC instructions. 33 #define GET_INSTRINFO_ENUM 34 #include "ARCGenInstrInfo.inc" 35 36 #define GET_SUBTARGETINFO_ENUM 37 #include "ARCGenSubtargetInfo.inc" 38 39 #endif // LLVM_LIB_TARGET_ARC_MCTARGETDESC_ARCMCTARGETDESC_H 40