blob: 641a67fe629bb661f1d60e128fb08c22bb30fafb [file] [log] [blame]
Tim Northover3b0846e2014-05-24 12:50:23 +00001//===-- 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 "AArch64InstrInfo.h"
15#include "AArch64Subtarget.h"
16#include "llvm/ADT/SmallVector.h"
17#include "llvm/CodeGen/MachineScheduler.h"
18#include "llvm/IR/GlobalValue.h"
19#include "llvm/Support/TargetRegistry.h"
20
21using 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
29static cl::opt<bool>
30EnableEarlyIfConvert("aarch64-early-ifcvt", cl::desc("Enable the early if "
31 "converter pass"), cl::init(true), cl::Hidden);
32
Eric Christopher7c9d4e02014-06-11 00:46:34 +000033AArch64Subtarget &
34AArch64Subtarget::initializeSubtargetDependencies(StringRef FS) {
35 // Determine default and user-specified characteristics
36
37 if (CPUString.empty())
38 CPUString = "generic";
39
40 ParseSubtargetFeatures(CPUString, FS);
41 return *this;
42}
43
Tim Northover3b0846e2014-05-24 12:50:23 +000044AArch64Subtarget::AArch64Subtarget(const std::string &TT,
45 const std::string &CPU,
Eric Christopher841da852014-06-10 23:26:45 +000046 const std::string &FS, TargetMachine &TM,
47 bool LittleEndian)
Tim Northover3b0846e2014-05-24 12:50:23 +000048 : AArch64GenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others),
49 HasFPARMv8(false), HasNEON(false), HasCrypto(false), HasCRC(false),
50 HasZeroCycleRegMove(false), HasZeroCycleZeroing(false), CPUString(CPU),
Eric Christopher17254ee2014-06-10 18:11:20 +000051 TargetTriple(TT),
Eric Christopher6f2a2032014-06-10 18:06:23 +000052 // This nested ternary is horrible, but DL needs to be properly
53 // initialized
54 // before TLInfo is constructed.
55 DL(isTargetMachO()
56 ? "e-m:o-i64:64-i128:128-n32:64-S128"
Eric Christopher17254ee2014-06-10 18:11:20 +000057 : (LittleEndian ? "e-m:e-i64:64-i128:128-n32:64-S128"
58 : "E-m:e-i64:64-i128:128-n32:64-S128")),
Eric Christopher7c9d4e02014-06-11 00:46:34 +000059 FrameLowering(), InstrInfo(initializeSubtargetDependencies(FS)),
60 TSInfo(&DL), TLInfo(TM) {}
Tim Northover3b0846e2014-05-24 12:50:23 +000061
62/// ClassifyGlobalReference - Find the target operand flags that describe
63/// how a global value should be referenced for the current subtarget.
64unsigned char
65AArch64Subtarget::ClassifyGlobalReference(const GlobalValue *GV,
66 const TargetMachine &TM) const {
67
68 // Determine whether this is a reference to a definition or a declaration.
69 // Materializable GVs (in JIT lazy compilation mode) do not require an extra
70 // load from stub.
71 bool isDecl = GV->hasAvailableExternallyLinkage();
72 if (GV->isDeclaration() && !GV->isMaterializable())
73 isDecl = true;
74
75 // MachO large model always goes via a GOT, simply to get a single 8-byte
76 // absolute relocation on all global addresses.
77 if (TM.getCodeModel() == CodeModel::Large && isTargetMachO())
78 return AArch64II::MO_GOT;
79
80 // The small code mode's direct accesses use ADRP, which cannot necessarily
Asiri Rathnayake369c0302014-09-10 13:54:38 +000081 // produce the value 0 (if the code is above 4GB).
82 if (TM.getCodeModel() == CodeModel::Small &&
83 GV->isWeakForLinker() && isDecl) {
84 // In PIC mode use the GOT, but in absolute mode use a constant pool load.
85 if (TM.getRelocationModel() == Reloc::Static)
86 return AArch64II::MO_CONSTPOOL;
87 else
88 return AArch64II::MO_GOT;
89 }
Tim Northover3b0846e2014-05-24 12:50:23 +000090
91 // If symbol visibility is hidden, the extra load is not needed if
92 // the symbol is definitely defined in the current translation unit.
93
94 // The handling of non-hidden symbols in PIC mode is rather target-dependent:
95 // + On MachO, if the symbol is defined in this module the GOT can be
96 // skipped.
97 // + On ELF, the R_AARCH64_COPY relocation means that even symbols actually
98 // defined could end up in unexpected places. Use a GOT.
99 if (TM.getRelocationModel() != Reloc::Static && GV->hasDefaultVisibility()) {
100 if (isTargetMachO())
101 return (isDecl || GV->isWeakForLinker()) ? AArch64II::MO_GOT
102 : AArch64II::MO_NO_FLAG;
103 else
104 // No need to go through the GOT for local symbols on ELF.
105 return GV->hasLocalLinkage() ? AArch64II::MO_NO_FLAG : AArch64II::MO_GOT;
106 }
107
108 return AArch64II::MO_NO_FLAG;
109}
110
111/// This function returns the name of a function which has an interface
112/// like the non-standard bzero function, if such a function exists on
113/// the current subtarget and it is considered prefereable over
114/// memset with zero passed as the second argument. Otherwise it
115/// returns null.
116const char *AArch64Subtarget::getBZeroEntry() const {
117 // Prefer bzero on Darwin only.
118 if(isTargetDarwin())
119 return "bzero";
120
121 return nullptr;
122}
123
124void AArch64Subtarget::overrideSchedPolicy(MachineSchedPolicy &Policy,
125 MachineInstr *begin, MachineInstr *end,
126 unsigned NumRegionInstrs) const {
127 // LNT run (at least on Cyclone) showed reasonably significant gains for
128 // bi-directional scheduling. 253.perlbmk.
129 Policy.OnlyTopDown = false;
130 Policy.OnlyBottomUp = false;
131}
132
133bool AArch64Subtarget::enableEarlyIfConversion() const {
134 return EnableEarlyIfConvert;
135}