blob: 8b8155ec663e6317e24a04386a3baa74418446a0 [file] [log] [blame]
Evan Chengbc153d42011-07-14 20:59:42 +00001//===-- 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
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H
15#define LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H
Evan Chengbc153d42011-07-14 20:59:42 +000016
Rafael Espindolafb8ac2d2012-12-20 05:13:09 +000017// GCC #defines PPC on Linux but we use it as our namespace name
18#undef PPC
19
Rafael Espindola38a400d2011-12-22 01:57:09 +000020#include "llvm/Support/DataTypes.h"
Hal Finkel6e9110a2015-03-28 19:42:41 +000021#include "llvm/Support/MathExtras.h"
Rafael Espindola38a400d2011-12-22 01:57:09 +000022
Evan Chengbc153d42011-07-14 20:59:42 +000023namespace llvm {
Evan Cheng5928e692011-07-25 23:24:55 +000024class MCAsmBackend;
Evan Cheng61d4a202011-07-25 19:53:23 +000025class MCCodeEmitter;
26class MCContext;
27class MCInstrInfo;
Rafael Espindola38a400d2011-12-22 01:57:09 +000028class MCObjectWriter;
Jim Grosbachc3b04272012-05-15 17:35:52 +000029class MCRegisterInfo;
Evan Chengbc153d42011-07-14 20:59:42 +000030class MCSubtargetInfo;
31class Target;
32class StringRef;
Rafael Espindola38a400d2011-12-22 01:57:09 +000033class raw_ostream;
Evan Chengbc153d42011-07-14 20:59:42 +000034
35extern Target ThePPC32Target;
36extern Target ThePPC64Target;
Bill Schmidt0a9170d2013-07-26 01:35:43 +000037extern Target ThePPC64LETarget;
Eric Christopher0169e422015-03-10 22:03:14 +000038
Evan Cheng61d4a202011-07-25 19:53:23 +000039MCCodeEmitter *createPPCMCCodeEmitter(const MCInstrInfo &MCII,
Jim Grosbachc3b04272012-05-15 17:35:52 +000040 const MCRegisterInfo &MRI,
Evan Cheng61d4a202011-07-25 19:53:23 +000041 MCContext &Ctx);
42
Bill Wendling58e2d3d2013-09-09 02:37:14 +000043MCAsmBackend *createPPCAsmBackend(const Target &T, const MCRegisterInfo &MRI,
44 StringRef TT, StringRef CPU);
Rafael Espindola38a400d2011-12-22 01:57:09 +000045
46/// createPPCELFObjectWriter - Construct an PPC ELF object writer.
47MCObjectWriter *createPPCELFObjectWriter(raw_ostream &OS,
48 bool Is64Bit,
Ulrich Weigandcae3a172014-03-24 18:16:09 +000049 bool IsLittleEndian,
Rafael Espindola38a400d2011-12-22 01:57:09 +000050 uint8_t OSABI);
David Fangb88cdf62013-08-08 20:14:40 +000051/// createPPCELFObjectWriter - Construct a PPC Mach-O object writer.
52MCObjectWriter *createPPCMachObjectWriter(raw_ostream &OS, bool Is64Bit,
53 uint32_t CPUType,
54 uint32_t CPUSubtype);
Hal Finkel6e9110a2015-03-28 19:42:41 +000055
56/// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s with
57/// any number of 0s on either side. The 1s are allowed to wrap from LSB to
58/// MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs. 0x0F0F0000 is
59/// not, since all 1s are not contiguous.
60static 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
Evan Chengbc153d42011-07-14 20:59:42 +000084} // End llvm namespace
85
Sylvestre Ledru37ef20d2013-03-17 12:40:42 +000086// 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
Evan Chengbc153d42011-07-14 20:59:42 +000090// 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