8ff7e6c6f29582a467e8f75c27a124e70b2a08c8
[oota-llvm.git] / lib / Target / PowerPC / MCTargetDesc / PPCMCTargetDesc.h
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 LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H
15 #define LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H
16
17 // GCC #defines PPC on Linux but we use it as our namespace name
18 #undef PPC
19
20 #include "llvm/Support/DataTypes.h"
21 #include "llvm/Support/MathExtras.h"
22
23 namespace llvm {
24 class MCAsmBackend;
25 class MCCodeEmitter;
26 class MCContext;
27 class MCInstrInfo;
28 class MCObjectWriter;
29 class MCRegisterInfo;
30 class MCSubtargetInfo;
31 class Target;
32 class StringRef;
33 class raw_ostream;
34
35 extern Target ThePPC32Target;
36 extern Target ThePPC64Target;
37 extern Target ThePPC64LETarget;
38
39 MCCodeEmitter *createPPCMCCodeEmitter(const MCInstrInfo &MCII,
40                                       const MCRegisterInfo &MRI,
41                                       MCContext &Ctx);
42
43 MCAsmBackend *createPPCAsmBackend(const Target &T, const MCRegisterInfo &MRI,
44                                   StringRef TT, StringRef CPU);
45
46 /// Construct an PPC ELF object writer.
47 MCObjectWriter *createPPCELFObjectWriter(raw_ostream &OS,
48                                          bool Is64Bit,
49                                          bool IsLittleEndian,
50                                          uint8_t OSABI);
51 /// Construct a PPC Mach-O object writer.
52 MCObjectWriter *createPPCMachObjectWriter(raw_ostream &OS, bool Is64Bit,
53                                           uint32_t CPUType,
54                                           uint32_t CPUSubtype);
55
56 /// Returns true iff Val consists of one contiguous run of 1s with any number of
57 /// 0s on either side.  The 1s are allowed to wrap from LSB to MSB, so
58 /// 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.  0x0F0F0000 is not,
59 /// since all 1s are not contiguous.
60 static inline bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
61   if (!Val)
62     return false;
63
64   if (isShiftedMask_32(Val)) {
65     // look for the first non-zero bit
66     MB = countLeadingZeros(Val);
67     // look for the first zero bit after the run of ones
68     ME = countLeadingZeros((Val - 1) ^ Val);
69     return true;
70   } else {
71     Val = ~Val; // invert mask
72     if (isShiftedMask_32(Val)) {
73       // effectively look for the first zero bit
74       ME = countLeadingZeros(Val) - 1;
75       // effectively look for the first one bit after the run of zeros
76       MB = countLeadingZeros((Val - 1) ^ Val) + 1;
77       return true;
78     }
79   }
80   // no run present
81   return false;
82 }
83
84 } // End llvm namespace
85
86 // Generated files will use "namespace PPC". To avoid symbol clash,
87 // undefine PPC here. PPC may be predefined on some hosts.
88 #undef PPC
89
90 // Defines symbolic names for PowerPC registers.  This defines a mapping from
91 // register name to register number.
92 //
93 #define GET_REGINFO_ENUM
94 #include "PPCGenRegisterInfo.inc"
95
96 // Defines symbolic names for the PowerPC instructions.
97 //
98 #define GET_INSTRINFO_ENUM
99 #include "PPCGenInstrInfo.inc"
100
101 #define GET_SUBTARGETINFO_ENUM
102 #include "PPCGenSubtargetInfo.inc"
103
104 #endif