Evan Cheng | 2475331 | 2011-06-24 01:44:41 +0000 | [diff] [blame] | 1 | //===-- X86TargetDesc.h - X86 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 X86 specific target descriptions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Evan Cheng | b2681be | 2011-06-24 23:59:54 +0000 | [diff] [blame] | 14 | #ifndef X86TARGETDESC_H |
| 15 | #define X86TARGETDESC_H |
| 16 | |
Evan Cheng | e862d59 | 2011-06-24 20:42:09 +0000 | [diff] [blame] | 17 | namespace llvm { |
| 18 | class Target; |
| 19 | |
| 20 | extern Target TheX86_32Target, TheX86_64Target; |
| 21 | } // End llvm namespace |
| 22 | |
Evan Cheng | 2475331 | 2011-06-24 01:44:41 +0000 | [diff] [blame] | 23 | // Defines symbolic names for X86 registers. This defines a mapping from |
| 24 | // register name to register number. |
| 25 | // |
Evan Cheng | d9997ac | 2011-06-27 18:32:37 +0000 | [diff] [blame^] | 26 | #define GET_REGINFO_ENUM |
| 27 | #include "X86GenRegisterInfo.inc" |
Evan Cheng | b2681be | 2011-06-24 23:59:54 +0000 | [diff] [blame] | 28 | |
| 29 | #endif |