]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r303571, and update
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / AArch64 / AArch64Subtarget.cpp
1 //===-- AArch64Subtarget.cpp - AArch64 Subtarget Information ----*- 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 implements the AArch64 specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "AArch64Subtarget.h"
15
16 #include "AArch64.h"
17 #include "AArch64InstrInfo.h"
18 #include "AArch64PBQPRegAlloc.h"
19 #include "AArch64TargetMachine.h"
20
21 #ifdef LLVM_BUILD_GLOBAL_ISEL
22 #include "AArch64CallLowering.h"
23 #include "AArch64LegalizerInfo.h"
24 #include "AArch64RegisterBankInfo.h"
25 #include "llvm/CodeGen/GlobalISel/GISelAccessor.h"
26 #include "llvm/CodeGen/GlobalISel/IRTranslator.h"
27 #include "llvm/CodeGen/GlobalISel/InstructionSelect.h"
28 #include "llvm/CodeGen/GlobalISel/Legalizer.h"
29 #include "llvm/CodeGen/GlobalISel/RegBankSelect.h"
30 #endif
31 #include "llvm/CodeGen/MachineScheduler.h"
32 #include "llvm/IR/GlobalValue.h"
33 #include "llvm/Support/TargetRegistry.h"
34
35 using namespace llvm;
36
37 #define DEBUG_TYPE "aarch64-subtarget"
38
39 #define GET_SUBTARGETINFO_CTOR
40 #define GET_SUBTARGETINFO_TARGET_DESC
41 #include "AArch64GenSubtargetInfo.inc"
42
43 static cl::opt<bool>
44 EnableEarlyIfConvert("aarch64-early-ifcvt", cl::desc("Enable the early if "
45                      "converter pass"), cl::init(true), cl::Hidden);
46
47 // If OS supports TBI, use this flag to enable it.
48 static cl::opt<bool>
49 UseAddressTopByteIgnored("aarch64-use-tbi", cl::desc("Assume that top byte of "
50                          "an address is ignored"), cl::init(false), cl::Hidden);
51
52 static cl::opt<bool>
53     UseNonLazyBind("aarch64-enable-nonlazybind",
54                    cl::desc("Call nonlazybind functions via direct GOT load"),
55                    cl::init(false), cl::Hidden);
56
57 AArch64Subtarget &
58 AArch64Subtarget::initializeSubtargetDependencies(StringRef FS,
59                                                   StringRef CPUString) {
60   // Determine default and user-specified characteristics
61
62   if (CPUString.empty())
63     CPUString = "generic";
64
65   ParseSubtargetFeatures(CPUString, FS);
66   initializeProperties();
67
68   return *this;
69 }
70
71 void AArch64Subtarget::initializeProperties() {
72   // Initialize CPU specific properties. We should add a tablegen feature for
73   // this in the future so we can specify it together with the subtarget
74   // features.
75   switch (ARMProcFamily) {
76   case Cyclone:
77     CacheLineSize = 64;
78     PrefetchDistance = 280;
79     MinPrefetchStride = 2048;
80     MaxPrefetchIterationsAhead = 3;
81     break;
82   case CortexA57:
83     MaxInterleaveFactor = 4;
84     break;
85   case ExynosM1:
86     MaxInterleaveFactor = 4;
87     MaxJumpTableSize = 8;
88     PrefFunctionAlignment = 4;
89     PrefLoopAlignment = 3;
90     break;
91   case Falkor:
92     MaxInterleaveFactor = 4;
93     VectorInsertExtractBaseCost = 2;
94     // FIXME: remove this to enable 64-bit SLP if performance looks good.
95     MinVectorRegisterBitWidth = 128;
96     break;
97   case Kryo:
98     MaxInterleaveFactor = 4;
99     VectorInsertExtractBaseCost = 2;
100     CacheLineSize = 128;
101     PrefetchDistance = 740;
102     MinPrefetchStride = 1024;
103     MaxPrefetchIterationsAhead = 11;
104     // FIXME: remove this to enable 64-bit SLP if performance looks good.
105     MinVectorRegisterBitWidth = 128;
106     break;
107   case ThunderX2T99:
108     CacheLineSize = 64;
109     PrefFunctionAlignment = 3;
110     PrefLoopAlignment = 2;
111     MaxInterleaveFactor = 4;
112     PrefetchDistance = 128;
113     MinPrefetchStride = 1024;
114     MaxPrefetchIterationsAhead = 4;
115     // FIXME: remove this to enable 64-bit SLP if performance looks good.
116     MinVectorRegisterBitWidth = 128;
117     break;
118   case ThunderX:
119   case ThunderXT88:
120   case ThunderXT81:
121   case ThunderXT83:
122     CacheLineSize = 128;
123     PrefFunctionAlignment = 3;
124     PrefLoopAlignment = 2;
125     // FIXME: remove this to enable 64-bit SLP if performance looks good.
126     MinVectorRegisterBitWidth = 128;
127     break;
128   case CortexA35: break;
129   case CortexA53: break;
130   case CortexA72: break;
131   case CortexA73: break;
132   case Others: break;
133   }
134 }
135
136 #ifdef LLVM_BUILD_GLOBAL_ISEL
137 namespace {
138
139 struct AArch64GISelActualAccessor : public GISelAccessor {
140   std::unique_ptr<CallLowering> CallLoweringInfo;
141   std::unique_ptr<InstructionSelector> InstSelector;
142   std::unique_ptr<LegalizerInfo> Legalizer;
143   std::unique_ptr<RegisterBankInfo> RegBankInfo;
144
145   const CallLowering *getCallLowering() const override {
146     return CallLoweringInfo.get();
147   }
148
149   const InstructionSelector *getInstructionSelector() const override {
150     return InstSelector.get();
151   }
152
153   const LegalizerInfo *getLegalizerInfo() const override {
154     return Legalizer.get();
155   }
156
157   const RegisterBankInfo *getRegBankInfo() const override {
158     return RegBankInfo.get();
159   }
160 };
161
162 } // end anonymous namespace
163 #endif
164
165 AArch64Subtarget::AArch64Subtarget(const Triple &TT, const std::string &CPU,
166                                    const std::string &FS,
167                                    const TargetMachine &TM, bool LittleEndian)
168     : AArch64GenSubtargetInfo(TT, CPU, FS), ReserveX18(TT.isOSDarwin()),
169       IsLittle(LittleEndian), TargetTriple(TT), FrameLowering(),
170       InstrInfo(initializeSubtargetDependencies(FS, CPU)), TSInfo(),
171       TLInfo(TM, *this), GISel() {
172 #ifndef LLVM_BUILD_GLOBAL_ISEL
173   GISelAccessor *AArch64GISel = new GISelAccessor();
174 #else
175   AArch64GISelActualAccessor *AArch64GISel = new AArch64GISelActualAccessor();
176   AArch64GISel->CallLoweringInfo.reset(
177       new AArch64CallLowering(*getTargetLowering()));
178   AArch64GISel->Legalizer.reset(new AArch64LegalizerInfo());
179
180   auto *RBI = new AArch64RegisterBankInfo(*getRegisterInfo());
181
182   // FIXME: At this point, we can't rely on Subtarget having RBI.
183   // It's awkward to mix passing RBI and the Subtarget; should we pass
184   // TII/TRI as well?
185   AArch64GISel->InstSelector.reset(createAArch64InstructionSelector(
186       *static_cast<const AArch64TargetMachine *>(&TM), *this, *RBI));
187
188   AArch64GISel->RegBankInfo.reset(RBI);
189 #endif
190   setGISelAccessor(*AArch64GISel);
191 }
192
193 const CallLowering *AArch64Subtarget::getCallLowering() const {
194   assert(GISel && "Access to GlobalISel APIs not set");
195   return GISel->getCallLowering();
196 }
197
198 const InstructionSelector *AArch64Subtarget::getInstructionSelector() const {
199   assert(GISel && "Access to GlobalISel APIs not set");
200   return GISel->getInstructionSelector();
201 }
202
203 const LegalizerInfo *AArch64Subtarget::getLegalizerInfo() const {
204   assert(GISel && "Access to GlobalISel APIs not set");
205   return GISel->getLegalizerInfo();
206 }
207
208 const RegisterBankInfo *AArch64Subtarget::getRegBankInfo() const {
209   assert(GISel && "Access to GlobalISel APIs not set");
210   return GISel->getRegBankInfo();
211 }
212
213 /// Find the target operand flags that describe how a global value should be
214 /// referenced for the current subtarget.
215 unsigned char
216 AArch64Subtarget::ClassifyGlobalReference(const GlobalValue *GV,
217                                           const TargetMachine &TM) const {
218   // MachO large model always goes via a GOT, simply to get a single 8-byte
219   // absolute relocation on all global addresses.
220   if (TM.getCodeModel() == CodeModel::Large && isTargetMachO())
221     return AArch64II::MO_GOT;
222
223   if (!TM.shouldAssumeDSOLocal(*GV->getParent(), GV))
224     return AArch64II::MO_GOT;
225
226   // The small code model's direct accesses use ADRP, which cannot
227   // necessarily produce the value 0 (if the code is above 4GB).
228   if (useSmallAddressing() && GV->hasExternalWeakLinkage())
229     return AArch64II::MO_GOT;
230
231   return AArch64II::MO_NO_FLAG;
232 }
233
234 unsigned char AArch64Subtarget::classifyGlobalFunctionReference(
235     const GlobalValue *GV, const TargetMachine &TM) const {
236   // MachO large model always goes via a GOT, because we don't have the
237   // relocations available to do anything else..
238   if (TM.getCodeModel() == CodeModel::Large && isTargetMachO() &&
239       !GV->hasInternalLinkage())
240     return AArch64II::MO_GOT;
241
242   // NonLazyBind goes via GOT unless we know it's available locally.
243   auto *F = dyn_cast<Function>(GV);
244   if (UseNonLazyBind && F && F->hasFnAttribute(Attribute::NonLazyBind) &&
245       !TM.shouldAssumeDSOLocal(*GV->getParent(), GV))
246     return AArch64II::MO_GOT;
247
248   return AArch64II::MO_NO_FLAG;
249 }
250
251 /// This function returns the name of a function which has an interface
252 /// like the non-standard bzero function, if such a function exists on
253 /// the current subtarget and it is considered prefereable over
254 /// memset with zero passed as the second argument. Otherwise it
255 /// returns null.
256 const char *AArch64Subtarget::getBZeroEntry() const {
257   // Prefer bzero on Darwin only.
258   if(isTargetDarwin())
259     return "bzero";
260
261   return nullptr;
262 }
263
264 void AArch64Subtarget::overrideSchedPolicy(MachineSchedPolicy &Policy,
265                                            unsigned NumRegionInstrs) const {
266   // LNT run (at least on Cyclone) showed reasonably significant gains for
267   // bi-directional scheduling. 253.perlbmk.
268   Policy.OnlyTopDown = false;
269   Policy.OnlyBottomUp = false;
270   // Enabling or Disabling the latency heuristic is a close call: It seems to
271   // help nearly no benchmark on out-of-order architectures, on the other hand
272   // it regresses register pressure on a few benchmarking.
273   Policy.DisableLatencyHeuristic = DisableLatencySchedHeuristic;
274 }
275
276 bool AArch64Subtarget::enableEarlyIfConversion() const {
277   return EnableEarlyIfConvert;
278 }
279
280 bool AArch64Subtarget::supportsAddressTopByteIgnored() const {
281   if (!UseAddressTopByteIgnored)
282     return false;
283
284   if (TargetTriple.isiOS()) {
285     unsigned Major, Minor, Micro;
286     TargetTriple.getiOSVersion(Major, Minor, Micro);
287     return Major >= 8;
288   }
289
290   return false;
291 }
292
293 std::unique_ptr<PBQPRAConstraint>
294 AArch64Subtarget::getCustomPBQPConstraints() const {
295   return balanceFPOps() ? llvm::make_unique<A57ChainingConstraint>() : nullptr;
296 }