blob: d47b9a6e452cad39dc0230ef385e9c832b36c8f6 [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
Hal Finkel6e9110a2015-03-28 19:42:41 +000020#include "llvm/Support/MathExtras.h"
Eugene Zelenko8187c192017-01-13 00:58:58 +000021#include <cstdint>
Lang Hames3a670752017-10-10 16:58:26 +000022#include <memory>
Rafael Espindola38a400d2011-12-22 01:57:09 +000023
Evan Chengbc153d42011-07-14 20:59:42 +000024namespace llvm {
Eugene Zelenko8187c192017-01-13 00:58:58 +000025
Evan Cheng5928e692011-07-25 23:24:55 +000026class MCAsmBackend;
Evan Cheng61d4a202011-07-25 19:53:23 +000027class MCCodeEmitter;
28class MCContext;
29class MCInstrInfo;
Rafael Espindola38a400d2011-12-22 01:57:09 +000030class MCObjectWriter;
Jim Grosbachc3b04272012-05-15 17:35:52 +000031class MCRegisterInfo;
Alex Bradburyb22f7512018-01-03 08:53:05 +000032class MCSubtargetInfo;
Joel Jones373d7d32016-07-25 17:18:28 +000033class MCTargetOptions;
Evan Chengbc153d42011-07-14 20:59:42 +000034class Target;
Daniel Sanders50f17232015-09-15 16:17:27 +000035class Triple;
Evan Chengbc153d42011-07-14 20:59:42 +000036class StringRef;
Rafael Espindola5560a4c2015-04-14 22:14:34 +000037class raw_pwrite_stream;
Evan Chengbc153d42011-07-14 20:59:42 +000038
Mehdi Aminif42454b2016-10-09 23:00:34 +000039Target &getThePPC32Target();
40Target &getThePPC64Target();
41Target &getThePPC64LETarget();
Eric Christopher0169e422015-03-10 22:03:14 +000042
Evan Cheng61d4a202011-07-25 19:53:23 +000043MCCodeEmitter *createPPCMCCodeEmitter(const MCInstrInfo &MCII,
Jim Grosbachc3b04272012-05-15 17:35:52 +000044 const MCRegisterInfo &MRI,
Evan Cheng61d4a202011-07-25 19:53:23 +000045 MCContext &Ctx);
46
Alex Bradburyb22f7512018-01-03 08:53:05 +000047MCAsmBackend *createPPCAsmBackend(const Target &T, const MCSubtargetInfo &STI,
48 const MCRegisterInfo &MRI,
Joel Jones373d7d32016-07-25 17:18:28 +000049 const MCTargetOptions &Options);
Rafael Espindola38a400d2011-12-22 01:57:09 +000050
Rafael Espindoladf7305a2015-04-09 17:10:57 +000051/// Construct an PPC ELF object writer.
Lang Hames60fbc7c2017-10-10 16:28:07 +000052std::unique_ptr<MCObjectWriter> createPPCELFObjectWriter(raw_pwrite_stream &OS,
53 bool Is64Bit,
54 bool IsLittleEndian,
55 uint8_t OSABI);
Rafael Espindoladf7305a2015-04-09 17:10:57 +000056/// Construct a PPC Mach-O object writer.
Lang Hames60fbc7c2017-10-10 16:28:07 +000057std::unique_ptr<MCObjectWriter> createPPCMachObjectWriter(raw_pwrite_stream &OS,
58 bool Is64Bit,
59 uint32_t CPUType,
60 uint32_t CPUSubtype);
Hal Finkel6e9110a2015-03-28 19:42:41 +000061
Rafael Espindoladf7305a2015-04-09 17:10:57 +000062/// Returns true iff Val consists of one contiguous run of 1s with any number of
63/// 0s on either side. The 1s are allowed to wrap from LSB to MSB, so
64/// 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs. 0x0F0F0000 is not,
65/// since all 1s are not contiguous.
Hal Finkel6e9110a2015-03-28 19:42:41 +000066static inline bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
67 if (!Val)
68 return false;
69
70 if (isShiftedMask_32(Val)) {
71 // look for the first non-zero bit
72 MB = countLeadingZeros(Val);
73 // look for the first zero bit after the run of ones
74 ME = countLeadingZeros((Val - 1) ^ Val);
75 return true;
76 } else {
77 Val = ~Val; // invert mask
78 if (isShiftedMask_32(Val)) {
79 // effectively look for the first zero bit
80 ME = countLeadingZeros(Val) - 1;
81 // effectively look for the first one bit after the run of zeros
82 MB = countLeadingZeros((Val - 1) ^ Val) + 1;
83 return true;
84 }
85 }
86 // no run present
87 return false;
88}
89
Eugene Zelenko8187c192017-01-13 00:58:58 +000090} // end namespace llvm
Evan Chengbc153d42011-07-14 20:59:42 +000091
Sylvestre Ledru37ef20d2013-03-17 12:40:42 +000092// Generated files will use "namespace PPC". To avoid symbol clash,
93// undefine PPC here. PPC may be predefined on some hosts.
94#undef PPC
95
Evan Chengbc153d42011-07-14 20:59:42 +000096// Defines symbolic names for PowerPC registers. This defines a mapping from
97// register name to register number.
98//
99#define GET_REGINFO_ENUM
100#include "PPCGenRegisterInfo.inc"
101
102// Defines symbolic names for the PowerPC instructions.
103//
104#define GET_INSTRINFO_ENUM
Craig Topperac59db22017-12-13 07:26:17 +0000105#define GET_INSTRINFO_SCHED_ENUM
Evan Chengbc153d42011-07-14 20:59:42 +0000106#include "PPCGenInstrInfo.inc"
107
108#define GET_SUBTARGETINFO_ENUM
109#include "PPCGenSubtargetInfo.inc"
110
Eugene Zelenko8187c192017-01-13 00:58:58 +0000111#endif // LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H