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 #include "AArch64InstrInfo.h"
16 #include "AArch64PBQPRegAlloc.h"
17 #include "llvm/CodeGen/MachineScheduler.h"
18 #include "llvm/IR/GlobalValue.h"
19 #include "llvm/Support/TargetRegistry.h"
20 
21 using namespace llvm;
22 
23 #define DEBUG_TYPE "aarch64-subtarget"
24 
25 #define GET_SUBTARGETINFO_CTOR
26 #define GET_SUBTARGETINFO_TARGET_DESC
27 #include "AArch64GenSubtargetInfo.inc"
28 
29 static cl::opt<bool>
30 EnableEarlyIfConvert("aarch64-early-ifcvt", cl::desc("Enable the early if "
31                      "converter pass"), cl::init(true), cl::Hidden);
32 
33 // If OS supports TBI, use this flag to enable it.
34 static cl::opt<bool>
35 UseAddressTopByteIgnored("aarch64-use-tbi", cl::desc("Assume that top byte of "
36                          "an address is ignored"), cl::init(false), cl::Hidden);
37 
38 AArch64Subtarget &
39 AArch64Subtarget::initializeSubtargetDependencies(StringRef FS,
40                                                   StringRef CPUString) {
41   // Determine default and user-specified characteristics
42 
43   if (CPUString.empty())
44     CPUString = "generic";
45 
46   ParseSubtargetFeatures(CPUString, FS);
47   initializeProperties();
48 
49   return *this;
50 }
51 
52 void AArch64Subtarget::initializeProperties() {
53   // Initialize CPU specific properties. We should add a tablegen feature for
54   // this in the future so we can specify it together with the subtarget
55   // features.
56   switch (ARMProcFamily) {
57   case Cyclone:
58     CacheLineSize = 64;
59     PrefetchDistance = 280;
60     MinPrefetchStride = 2048;
61     MaxPrefetchIterationsAhead = 3;
62     break;
63   case CortexA57:
64     MaxInterleaveFactor = 4;
65     break;
66   case ExynosM1:
67     MaxInterleaveFactor = 4;
68     MaxJumpTableSize = 8;
69     PrefFunctionAlignment = 4;
70     PrefLoopAlignment = 3;
71     break;
72   case Falkor:
73     MaxInterleaveFactor = 4;
74     break;
75   case Kryo:
76     MaxInterleaveFactor = 4;
77     VectorInsertExtractBaseCost = 2;
78     CacheLineSize = 128;
79     PrefetchDistance = 740;
80     MinPrefetchStride = 1024;
81     MaxPrefetchIterationsAhead = 11;
82     break;
83   case Vulcan:
84     MaxInterleaveFactor = 4;
85     break;
86   case CortexA35: break;
87   case CortexA53: break;
88   case CortexA72: break;
89   case CortexA73: break;
90   case Others: break;
91   }
92 }
93 
94 AArch64Subtarget::AArch64Subtarget(const Triple &TT, const std::string &CPU,
95                                    const std::string &FS,
96                                    const TargetMachine &TM, bool LittleEndian)
97     : AArch64GenSubtargetInfo(TT, CPU, FS), ReserveX18(TT.isOSDarwin()),
98       IsLittle(LittleEndian), TargetTriple(TT), FrameLowering(),
99       InstrInfo(initializeSubtargetDependencies(FS, CPU)), TSInfo(),
100       TLInfo(TM, *this), GISel() {}
101 
102 const CallLowering *AArch64Subtarget::getCallLowering() const {
103   assert(GISel && "Access to GlobalISel APIs not set");
104   return GISel->getCallLowering();
105 }
106 
107 const InstructionSelector *AArch64Subtarget::getInstructionSelector() const {
108   assert(GISel && "Access to GlobalISel APIs not set");
109   return GISel->getInstructionSelector();
110 }
111 
112 const LegalizerInfo *AArch64Subtarget::getLegalizerInfo() const {
113   assert(GISel && "Access to GlobalISel APIs not set");
114   return GISel->getLegalizerInfo();
115 }
116 
117 const RegisterBankInfo *AArch64Subtarget::getRegBankInfo() const {
118   assert(GISel && "Access to GlobalISel APIs not set");
119   return GISel->getRegBankInfo();
120 }
121 
122 /// Find the target operand flags that describe how a global value should be
123 /// referenced for the current subtarget.
124 unsigned char
125 AArch64Subtarget::ClassifyGlobalReference(const GlobalValue *GV,
126                                           const TargetMachine &TM) const {
127   // MachO large model always goes via a GOT, simply to get a single 8-byte
128   // absolute relocation on all global addresses.
129   if (TM.getCodeModel() == CodeModel::Large && isTargetMachO())
130     return AArch64II::MO_GOT;
131 
132   if (!TM.shouldAssumeDSOLocal(*GV->getParent(), GV))
133     return AArch64II::MO_GOT;
134 
135   // The small code mode's direct accesses use ADRP, which cannot necessarily
136   // produce the value 0 (if the code is above 4GB).
137   if (TM.getCodeModel() == CodeModel::Small && GV->hasExternalWeakLinkage())
138     return AArch64II::MO_GOT;
139 
140   return AArch64II::MO_NO_FLAG;
141 }
142 
143 /// This function returns the name of a function which has an interface
144 /// like the non-standard bzero function, if such a function exists on
145 /// the current subtarget and it is considered prefereable over
146 /// memset with zero passed as the second argument. Otherwise it
147 /// returns null.
148 const char *AArch64Subtarget::getBZeroEntry() const {
149   // Prefer bzero on Darwin only.
150   if(isTargetDarwin())
151     return "bzero";
152 
153   return nullptr;
154 }
155 
156 void AArch64Subtarget::overrideSchedPolicy(MachineSchedPolicy &Policy,
157                                            unsigned NumRegionInstrs) const {
158   // LNT run (at least on Cyclone) showed reasonably significant gains for
159   // bi-directional scheduling. 253.perlbmk.
160   Policy.OnlyTopDown = false;
161   Policy.OnlyBottomUp = false;
162   // Enabling or Disabling the latency heuristic is a close call: It seems to
163   // help nearly no benchmark on out-of-order architectures, on the other hand
164   // it regresses register pressure on a few benchmarking.
165   Policy.DisableLatencyHeuristic = DisableLatencySchedHeuristic;
166 }
167 
168 bool AArch64Subtarget::enableEarlyIfConversion() const {
169   return EnableEarlyIfConvert;
170 }
171 
172 bool AArch64Subtarget::supportsAddressTopByteIgnored() const {
173   if (!UseAddressTopByteIgnored)
174     return false;
175 
176   if (TargetTriple.isiOS()) {
177     unsigned Major, Minor, Micro;
178     TargetTriple.getiOSVersion(Major, Minor, Micro);
179     return Major >= 8;
180   }
181 
182   return false;
183 }
184 
185 std::unique_ptr<PBQPRAConstraint>
186 AArch64Subtarget::getCustomPBQPConstraints() const {
187   return balanceFPOps() ? llvm::make_unique<A57ChainingConstraint>() : nullptr;
188 }
189