blob: 77fe45882289f3f8de2c96e500e5e5c8c117f86c [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;
Daniel Sanders50f17232015-09-15 16:17:27 +000032class Triple;
Evan Chengbc153d42011-07-14 20:59:42 +000033class StringRef;
Rafael Espindola5560a4c2015-04-14 22:14:34 +000034class raw_pwrite_stream;
Rafael Espindola38a400d2011-12-22 01:57:09 +000035class raw_ostream;
Evan Chengbc153d42011-07-14 20:59:42 +000036
37extern Target ThePPC32Target;
38extern Target ThePPC64Target;
Bill Schmidt0a9170d2013-07-26 01:35:43 +000039extern Target ThePPC64LETarget;
Eric Christopher0169e422015-03-10 22:03:14 +000040
Evan Cheng61d4a202011-07-25 19:53:23 +000041MCCodeEmitter *createPPCMCCodeEmitter(const MCInstrInfo &MCII,
Jim Grosbachc3b04272012-05-15 17:35:52 +000042 const MCRegisterInfo &MRI,
Evan Cheng61d4a202011-07-25 19:53:23 +000043 MCContext &Ctx);
44
Bill Wendling58e2d3d2013-09-09 02:37:14 +000045MCAsmBackend *createPPCAsmBackend(const Target &T, const MCRegisterInfo &MRI,
Daniel Sanders50f17232015-09-15 16:17:27 +000046 const Triple &TT, StringRef CPU);
Rafael Espindola38a400d2011-12-22 01:57:09 +000047
Rafael Espindoladf7305a2015-04-09 17:10:57 +000048/// Construct an PPC ELF object writer.
Rafael Espindola5560a4c2015-04-14 22:14:34 +000049MCObjectWriter *createPPCELFObjectWriter(raw_pwrite_stream &OS, bool Is64Bit,
50 bool IsLittleEndian, uint8_t OSABI);
Rafael Espindoladf7305a2015-04-09 17:10:57 +000051/// Construct a PPC Mach-O object writer.
Rafael Espindola5560a4c2015-04-14 22:14:34 +000052MCObjectWriter *createPPCMachObjectWriter(raw_pwrite_stream &OS, bool Is64Bit,
David Fangb88cdf62013-08-08 20:14:40 +000053 uint32_t CPUType,
54 uint32_t CPUSubtype);
Hal Finkel6e9110a2015-03-28 19:42:41 +000055
Rafael Espindoladf7305a2015-04-09 17:10:57 +000056/// 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.
Hal Finkel6e9110a2015-03-28 19:42:41 +000060static 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
Alexander Kornienkof00654e2015-06-23 09:49:53 +000084} // End llvm namespace
Evan Chengbc153d42011-07-14 20:59:42 +000085
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