blob: 4829fedfba7e46ad1b37cfbc2ad23fcaf95395ed [file] [log] [blame]
Evan Chengbc153d42011-07-14 20:59:42 +00001//===-- PPCMCTargetDesc.h - PowerPC Target Descriptions ---------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Evan Chengbc153d42011-07-14 20:59:42 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file provides PowerPC specific target descriptions.
10//
11//===----------------------------------------------------------------------===//
12
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000013#ifndef LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H
14#define LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H
Evan Chengbc153d42011-07-14 20:59:42 +000015
Rafael Espindolafb8ac2d2012-12-20 05:13:09 +000016// GCC #defines PPC on Linux but we use it as our namespace name
17#undef PPC
18
Nemanja Ivanovic0dad9942018-12-29 16:13:11 +000019#include "llvm/MC/MCRegisterInfo.h"
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;
Peter Collingbournedcd7d6c2018-05-21 19:20:29 +000030class MCObjectTargetWriter;
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
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
Alex Bradburyb22f7512018-01-03 08:53:05 +000043MCAsmBackend *createPPCAsmBackend(const Target &T, const MCSubtargetInfo &STI,
44 const MCRegisterInfo &MRI,
Joel Jones373d7d32016-07-25 17:18:28 +000045 const MCTargetOptions &Options);
Rafael Espindola38a400d2011-12-22 01:57:09 +000046
Rafael Espindoladf7305a2015-04-09 17:10:57 +000047/// Construct an PPC ELF object writer.
Peter Collingbournedcd7d6c2018-05-21 19:20:29 +000048std::unique_ptr<MCObjectTargetWriter> createPPCELFObjectWriter(bool Is64Bit,
49 uint8_t OSABI);
Rafael Espindoladf7305a2015-04-09 17:10:57 +000050/// Construct a PPC Mach-O object writer.
Peter Collingbournedcd7d6c2018-05-21 19:20:29 +000051std::unique_ptr<MCObjectTargetWriter>
52createPPCMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype);
Hal Finkel6e9110a2015-03-28 19:42:41 +000053
Rafael Espindoladf7305a2015-04-09 17:10:57 +000054/// Returns true iff Val consists of one contiguous run of 1s with any number of
55/// 0s on either side. The 1s are allowed to wrap from LSB to MSB, so
56/// 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs. 0x0F0F0000 is not,
57/// since all 1s are not contiguous.
Hal Finkel6e9110a2015-03-28 19:42:41 +000058static inline bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
59 if (!Val)
60 return false;
61
62 if (isShiftedMask_32(Val)) {
63 // look for the first non-zero bit
64 MB = countLeadingZeros(Val);
65 // look for the first zero bit after the run of ones
66 ME = countLeadingZeros((Val - 1) ^ Val);
67 return true;
68 } else {
69 Val = ~Val; // invert mask
70 if (isShiftedMask_32(Val)) {
71 // effectively look for the first zero bit
72 ME = countLeadingZeros(Val) - 1;
73 // effectively look for the first one bit after the run of zeros
74 MB = countLeadingZeros((Val - 1) ^ Val) + 1;
75 return true;
76 }
77 }
78 // no run present
79 return false;
80}
81
Eugene Zelenko8187c192017-01-13 00:58:58 +000082} // end namespace llvm
Evan Chengbc153d42011-07-14 20:59:42 +000083
Sylvestre Ledru37ef20d2013-03-17 12:40:42 +000084// Generated files will use "namespace PPC". To avoid symbol clash,
85// undefine PPC here. PPC may be predefined on some hosts.
86#undef PPC
87
Evan Chengbc153d42011-07-14 20:59:42 +000088// Defines symbolic names for PowerPC registers. This defines a mapping from
89// register name to register number.
90//
91#define GET_REGINFO_ENUM
92#include "PPCGenRegisterInfo.inc"
93
94// Defines symbolic names for the PowerPC instructions.
95//
96#define GET_INSTRINFO_ENUM
Craig Topperac59db22017-12-13 07:26:17 +000097#define GET_INSTRINFO_SCHED_ENUM
Evan Chengbc153d42011-07-14 20:59:42 +000098#include "PPCGenInstrInfo.inc"
99
100#define GET_SUBTARGETINFO_ENUM
101#include "PPCGenSubtargetInfo.inc"
102
Nemanja Ivanovic0dad9942018-12-29 16:13:11 +0000103#define PPC_REGS0_31(X) \
104 { \
105 X##0, X##1, X##2, X##3, X##4, X##5, X##6, X##7, X##8, X##9, X##10, X##11, \
106 X##12, X##13, X##14, X##15, X##16, X##17, X##18, X##19, X##20, X##21, \
107 X##22, X##23, X##24, X##25, X##26, X##27, X##28, X##29, X##30, X##31 \
108 }
109
110#define PPC_REGS_NO0_31(Z, X) \
111 { \
112 Z, X##1, X##2, X##3, X##4, X##5, X##6, X##7, X##8, X##9, X##10, X##11, \
113 X##12, X##13, X##14, X##15, X##16, X##17, X##18, X##19, X##20, X##21, \
114 X##22, X##23, X##24, X##25, X##26, X##27, X##28, X##29, X##30, X##31 \
115 }
116
117#define PPC_REGS_LO_HI(LO, HI) \
118 { \
119 LO##0, LO##1, LO##2, LO##3, LO##4, LO##5, LO##6, LO##7, LO##8, LO##9, \
120 LO##10, LO##11, LO##12, LO##13, LO##14, LO##15, LO##16, LO##17, \
121 LO##18, LO##19, LO##20, LO##21, LO##22, LO##23, LO##24, LO##25, \
122 LO##26, LO##27, LO##28, LO##29, LO##30, LO##31, HI##0, HI##1, HI##2, \
123 HI##3, HI##4, HI##5, HI##6, HI##7, HI##8, HI##9, HI##10, HI##11, \
124 HI##12, HI##13, HI##14, HI##15, HI##16, HI##17, HI##18, HI##19, \
125 HI##20, HI##21, HI##22, HI##23, HI##24, HI##25, HI##26, HI##27, \
126 HI##28, HI##29, HI##30, HI##31 \
127 }
128
129using llvm::MCPhysReg;
130
131#define DEFINE_PPC_REGCLASSES \
132 static const MCPhysReg RRegs[32] = PPC_REGS0_31(PPC::R); \
133 static const MCPhysReg XRegs[32] = PPC_REGS0_31(PPC::X); \
134 static const MCPhysReg FRegs[32] = PPC_REGS0_31(PPC::F); \
135 static const MCPhysReg SPERegs[32] = PPC_REGS0_31(PPC::S); \
136 static const MCPhysReg VFRegs[32] = PPC_REGS0_31(PPC::VF); \
137 static const MCPhysReg VRegs[32] = PPC_REGS0_31(PPC::V); \
138 static const MCPhysReg QFRegs[32] = PPC_REGS0_31(PPC::QF); \
139 static const MCPhysReg RRegsNoR0[32] = \
140 PPC_REGS_NO0_31(PPC::ZERO, PPC::R); \
141 static const MCPhysReg XRegsNoX0[32] = \
142 PPC_REGS_NO0_31(PPC::ZERO8, PPC::X); \
143 static const MCPhysReg VSRegs[64] = \
144 PPC_REGS_LO_HI(PPC::VSL, PPC::V); \
145 static const MCPhysReg VSFRegs[64] = \
146 PPC_REGS_LO_HI(PPC::F, PPC::VF); \
147 static const MCPhysReg VSSRegs[64] = \
148 PPC_REGS_LO_HI(PPC::F, PPC::VF); \
149 static const MCPhysReg CRBITRegs[32] = { \
150 PPC::CR0LT, PPC::CR0GT, PPC::CR0EQ, PPC::CR0UN, \
151 PPC::CR1LT, PPC::CR1GT, PPC::CR1EQ, PPC::CR1UN, \
152 PPC::CR2LT, PPC::CR2GT, PPC::CR2EQ, PPC::CR2UN, \
153 PPC::CR3LT, PPC::CR3GT, PPC::CR3EQ, PPC::CR3UN, \
154 PPC::CR4LT, PPC::CR4GT, PPC::CR4EQ, PPC::CR4UN, \
155 PPC::CR5LT, PPC::CR5GT, PPC::CR5EQ, PPC::CR5UN, \
156 PPC::CR6LT, PPC::CR6GT, PPC::CR6EQ, PPC::CR6UN, \
157 PPC::CR7LT, PPC::CR7GT, PPC::CR7EQ, PPC::CR7UN}; \
158 static const MCPhysReg CRRegs[8] = { \
159 PPC::CR0, PPC::CR1, PPC::CR2, PPC::CR3, \
160 PPC::CR4, PPC::CR5, PPC::CR6, PPC::CR7}
161
Eugene Zelenko8187c192017-01-13 00:58:58 +0000162#endif // LLVM_LIB_TARGET_POWERPC_MCTARGETDESC_PPCMCTARGETDESC_H