• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===-- PPCMCTargetDesc.h - PowerPC 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 PowerPC specific target descriptions.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef PPCMCTARGETDESC_H
15 #define PPCMCTARGETDESC_H
16 
17 #include "llvm/Support/DataTypes.h"
18 
19 namespace llvm {
20 class MCAsmBackend;
21 class MCCodeEmitter;
22 class MCContext;
23 class MCInstrInfo;
24 class MCObjectWriter;
25 class MCRegisterInfo;
26 class MCSubtargetInfo;
27 class Target;
28 class StringRef;
29 class raw_ostream;
30 
31 extern Target ThePPC32Target;
32 extern Target ThePPC64Target;
33 
34 MCCodeEmitter *createPPCMCCodeEmitter(const MCInstrInfo &MCII,
35                                       const MCRegisterInfo &MRI,
36                                       const MCSubtargetInfo &STI,
37                                       MCContext &Ctx);
38 
39 MCAsmBackend *createPPCAsmBackend(const Target &T, StringRef TT);
40 
41 /// createPPCELFObjectWriter - Construct an PPC ELF object writer.
42 MCObjectWriter *createPPCELFObjectWriter(raw_ostream &OS,
43                                          bool Is64Bit,
44                                          uint8_t OSABI);
45 } // End llvm namespace
46 
47 // Defines symbolic names for PowerPC registers.  This defines a mapping from
48 // register name to register number.
49 //
50 #define GET_REGINFO_ENUM
51 #include "PPCGenRegisterInfo.inc"
52 
53 // Defines symbolic names for the PowerPC instructions.
54 //
55 #define GET_INSTRINFO_ENUM
56 #include "PPCGenInstrInfo.inc"
57 
58 #define GET_SUBTARGETINFO_ENUM
59 #include "PPCGenSubtargetInfo.inc"
60 
61 #endif
62