blob: a486cffcfd089c23dcf9df542a8c6386002044e4 [file] [log] [blame]
Evan Cheng78a9f132011-07-06 22:02:34 +00001//===-- ARMMCTargetDesc.h - ARM 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 ARM specific target descriptions.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef ARMMCTARGETDESC_H
15#define ARMMCTARGETDESC_H
16
17namespace llvm {
18class Target;
19
20extern Target TheARMTarget, TheThumbTarget;
21} // End llvm namespace
22
23// Defines symbolic names for ARM registers. This defines a mapping from
24// register name to register number.
25//
26#define GET_REGINFO_ENUM
27#include "ARMGenRegisterInfo.inc"
28
29// Defines symbolic names for the ARM instructions.
30//
31#define GET_INSTRINFO_ENUM
32#include "ARMGenInstrInfo.inc"
33
34#endif