1 //===-- X86Subtarget.cpp - X86 Subtarget Information ----------------------===// 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 X86 specific subclass of TargetSubtargetInfo. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "X86.h" 15 16 #include "X86CallLowering.h" 17 #include "X86LegalizerInfo.h" 18 #include "X86RegisterBankInfo.h" 19 #include "X86Subtarget.h" 20 #include "MCTargetDesc/X86BaseInfo.h" 21 #include "X86TargetMachine.h" 22 #include "llvm/ADT/Triple.h" 23 #include "llvm/CodeGen/GlobalISel/CallLowering.h" 24 #include "llvm/CodeGen/GlobalISel/InstructionSelect.h" 25 #include "llvm/IR/Attributes.h" 26 #include "llvm/IR/ConstantRange.h" 27 #include "llvm/IR/Function.h" 28 #include "llvm/IR/GlobalValue.h" 29 #include "llvm/Support/Casting.h" 30 #include "llvm/Support/CodeGen.h" 31 #include "llvm/Support/CommandLine.h" 32 #include "llvm/Support/Debug.h" 33 #include "llvm/Support/ErrorHandling.h" 34 #include "llvm/Support/raw_ostream.h" 35 #include "llvm/Target/TargetMachine.h" 36 37 #if defined(_MSC_VER) 38 #include <intrin.h> 39 #endif 40 41 using namespace llvm; 42 43 #define DEBUG_TYPE "subtarget" 44 45 #define GET_SUBTARGETINFO_TARGET_DESC 46 #define GET_SUBTARGETINFO_CTOR 47 #include "X86GenSubtargetInfo.inc" 48 49 // Temporary option to control early if-conversion for x86 while adding machine 50 // models. 51 static cl::opt<bool> 52 X86EarlyIfConv("x86-early-ifcvt", cl::Hidden, 53 cl::desc("Enable early if-conversion on X86")); 54 55 56 /// Classify a blockaddress reference for the current subtarget according to how 57 /// we should reference it in a non-pcrel context. 58 unsigned char X86Subtarget::classifyBlockAddressReference() const { 59 return classifyLocalReference(nullptr); 60 } 61 62 /// Classify a global variable reference for the current subtarget according to 63 /// how we should reference it in a non-pcrel context. 64 unsigned char 65 X86Subtarget::classifyGlobalReference(const GlobalValue *GV) const { 66 return classifyGlobalReference(GV, *GV->getParent()); 67 } 68 69 unsigned char 70 X86Subtarget::classifyLocalReference(const GlobalValue *GV) const { 71 // 64 bits can use %rip addressing for anything local. 72 if (is64Bit()) 73 return X86II::MO_NO_FLAG; 74 75 // If this is for a position dependent executable, the static linker can 76 // figure it out. 77 if (!isPositionIndependent()) 78 return X86II::MO_NO_FLAG; 79 80 // The COFF dynamic linker just patches the executable sections. 81 if (isTargetCOFF()) 82 return X86II::MO_NO_FLAG; 83 84 if (isTargetDarwin()) { 85 // 32 bit macho has no relocation for a-b if a is undefined, even if 86 // b is in the section that is being relocated. 87 // This means we have to use o load even for GVs that are known to be 88 // local to the dso. 89 if (GV && (GV->isDeclarationForLinker() || GV->hasCommonLinkage())) 90 return X86II::MO_DARWIN_NONLAZY_PIC_BASE; 91 92 return X86II::MO_PIC_BASE_OFFSET; 93 } 94 95 return X86II::MO_GOTOFF; 96 } 97 98 unsigned char X86Subtarget::classifyGlobalReference(const GlobalValue *GV, 99 const Module &M) const { 100 // Large model never uses stubs. 101 if (TM.getCodeModel() == CodeModel::Large) 102 return X86II::MO_NO_FLAG; 103 104 // Absolute symbols can be referenced directly. 105 if (GV) { 106 if (Optional<ConstantRange> CR = GV->getAbsoluteSymbolRange()) { 107 // See if we can use the 8-bit immediate form. Note that some instructions 108 // will sign extend the immediate operand, so to be conservative we only 109 // accept the range [0,128). 110 if (CR->getUnsignedMax().ult(128)) 111 return X86II::MO_ABS8; 112 else 113 return X86II::MO_NO_FLAG; 114 } 115 } 116 117 if (TM.shouldAssumeDSOLocal(M, GV)) 118 return classifyLocalReference(GV); 119 120 if (isTargetCOFF()) 121 return X86II::MO_DLLIMPORT; 122 123 if (is64Bit()) 124 return X86II::MO_GOTPCREL; 125 126 if (isTargetDarwin()) { 127 if (!isPositionIndependent()) 128 return X86II::MO_DARWIN_NONLAZY; 129 return X86II::MO_DARWIN_NONLAZY_PIC_BASE; 130 } 131 132 return X86II::MO_GOT; 133 } 134 135 unsigned char 136 X86Subtarget::classifyGlobalFunctionReference(const GlobalValue *GV) const { 137 return classifyGlobalFunctionReference(GV, *GV->getParent()); 138 } 139 140 unsigned char 141 X86Subtarget::classifyGlobalFunctionReference(const GlobalValue *GV, 142 const Module &M) const { 143 if (TM.shouldAssumeDSOLocal(M, GV)) 144 return X86II::MO_NO_FLAG; 145 146 if (isTargetCOFF()) { 147 assert(GV->hasDLLImportStorageClass() && 148 "shouldAssumeDSOLocal gave inconsistent answer"); 149 return X86II::MO_DLLIMPORT; 150 } 151 152 const Function *F = dyn_cast_or_null<Function>(GV); 153 154 if (isTargetELF()) { 155 if (is64Bit() && F && (CallingConv::X86_RegCall == F->getCallingConv())) 156 // According to psABI, PLT stub clobbers XMM8-XMM15. 157 // In Regcall calling convention those registers are used for passing 158 // parameters. Thus we need to prevent lazy binding in Regcall. 159 return X86II::MO_GOTPCREL; 160 // If PLT must be avoided then the call should be via GOTPCREL. 161 if (((F && F->hasFnAttribute(Attribute::NonLazyBind)) || 162 (!F && M.getRtLibUseGOT())) && 163 is64Bit()) 164 return X86II::MO_GOTPCREL; 165 return X86II::MO_PLT; 166 } 167 168 if (is64Bit()) { 169 if (F && F->hasFnAttribute(Attribute::NonLazyBind)) 170 // If the function is marked as non-lazy, generate an indirect call 171 // which loads from the GOT directly. This avoids runtime overhead 172 // at the cost of eager binding (and one extra byte of encoding). 173 return X86II::MO_GOTPCREL; 174 return X86II::MO_NO_FLAG; 175 } 176 177 return X86II::MO_NO_FLAG; 178 } 179 180 /// Return true if the subtarget allows calls to immediate address. 181 bool X86Subtarget::isLegalToCallImmediateAddr() const { 182 // FIXME: I386 PE/COFF supports PC relative calls using IMAGE_REL_I386_REL32 183 // but WinCOFFObjectWriter::RecordRelocation cannot emit them. Once it does, 184 // the following check for Win32 should be removed. 185 if (In64BitMode || isTargetWin32()) 186 return false; 187 return isTargetELF() || TM.getRelocationModel() == Reloc::Static; 188 } 189 190 void X86Subtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) { 191 std::string CPUName = CPU; 192 if (CPUName.empty()) 193 CPUName = "generic"; 194 195 // Make sure 64-bit features are available in 64-bit mode. (But make sure 196 // SSE2 can be turned off explicitly.) 197 std::string FullFS = FS; 198 if (In64BitMode) { 199 if (!FullFS.empty()) 200 FullFS = "+64bit,+sse2," + FullFS; 201 else 202 FullFS = "+64bit,+sse2"; 203 } 204 205 // LAHF/SAHF are always supported in non-64-bit mode. 206 if (!In64BitMode) { 207 if (!FullFS.empty()) 208 FullFS = "+sahf," + FullFS; 209 else 210 FullFS = "+sahf"; 211 } 212 213 // Parse features string and set the CPU. 214 ParseSubtargetFeatures(CPUName, FullFS); 215 216 // All CPUs that implement SSE4.2 or SSE4A support unaligned accesses of 217 // 16-bytes and under that are reasonably fast. These features were 218 // introduced with Intel's Nehalem/Silvermont and AMD's Family10h 219 // micro-architectures respectively. 220 if (hasSSE42() || hasSSE4A()) 221 IsUAMem16Slow = false; 222 223 // It's important to keep the MCSubtargetInfo feature bits in sync with 224 // target data structure which is shared with MC code emitter, etc. 225 if (In64BitMode) 226 ToggleFeature(X86::Mode64Bit); 227 else if (In32BitMode) 228 ToggleFeature(X86::Mode32Bit); 229 else if (In16BitMode) 230 ToggleFeature(X86::Mode16Bit); 231 else 232 llvm_unreachable("Not 16-bit, 32-bit or 64-bit mode!"); 233 234 DEBUG(dbgs() << "Subtarget features: SSELevel " << X86SSELevel 235 << ", 3DNowLevel " << X863DNowLevel 236 << ", 64bit " << HasX86_64 << "\n"); 237 assert((!In64BitMode || HasX86_64) && 238 "64-bit code requested on a subtarget that doesn't support it!"); 239 240 // Stack alignment is 16 bytes on Darwin, Linux, kFreeBSD and Solaris (both 241 // 32 and 64 bit) and for all 64-bit targets. 242 if (StackAlignOverride) 243 stackAlignment = StackAlignOverride; 244 else if (isTargetDarwin() || isTargetLinux() || isTargetSolaris() || 245 isTargetKFreeBSD() || In64BitMode) 246 stackAlignment = 16; 247 248 // Some CPUs have more overhead for gather. The specified overhead is relative 249 // to the Load operation. "2" is the number provided by Intel architects. This 250 // parameter is used for cost estimation of Gather Op and comparison with 251 // other alternatives. 252 // TODO: Remove the explicit hasAVX512()?, That would mean we would only 253 // enable gather with a -march. 254 if (hasAVX512() || (hasAVX2() && hasFastGather())) 255 GatherOverhead = 2; 256 if (hasAVX512()) 257 ScatterOverhead = 2; 258 259 // Consume the vector width attribute or apply any target specific limit. 260 if (PreferVectorWidthOverride) 261 PreferVectorWidth = PreferVectorWidthOverride; 262 else if (Prefer256Bit) 263 PreferVectorWidth = 256; 264 } 265 266 void X86Subtarget::initializeEnvironment() { 267 X86SSELevel = NoSSE; 268 X863DNowLevel = NoThreeDNow; 269 HasX87 = false; 270 HasNOPL = false; 271 HasCMov = false; 272 HasX86_64 = false; 273 HasPOPCNT = false; 274 HasSSE4A = false; 275 HasAES = false; 276 HasVAES = false; 277 HasFXSR = false; 278 HasXSAVE = false; 279 HasXSAVEOPT = false; 280 HasXSAVEC = false; 281 HasXSAVES = false; 282 HasPCLMUL = false; 283 HasVPCLMULQDQ = false; 284 HasGFNI = false; 285 HasFMA = false; 286 HasFMA4 = false; 287 HasXOP = false; 288 HasTBM = false; 289 HasLWP = false; 290 HasMOVBE = false; 291 HasRDRAND = false; 292 HasF16C = false; 293 HasFSGSBase = false; 294 HasLZCNT = false; 295 HasBMI = false; 296 HasBMI2 = false; 297 HasVBMI = false; 298 HasVBMI2 = false; 299 HasIFMA = false; 300 HasRTM = false; 301 HasERI = false; 302 HasCDI = false; 303 HasPFI = false; 304 HasDQI = false; 305 HasVPOPCNTDQ = false; 306 HasBWI = false; 307 HasVLX = false; 308 HasADX = false; 309 HasPKU = false; 310 HasVNNI = false; 311 HasBITALG = false; 312 HasSHA = false; 313 HasPREFETCHWT1 = false; 314 HasPRFCHW = false; 315 HasRDSEED = false; 316 HasLAHFSAHF = false; 317 HasMWAITX = false; 318 HasCLZERO = false; 319 HasCLDEMOTE = false; 320 HasMOVDIRI = false; 321 HasMOVDIR64B = false; 322 HasPTWRITE = false; 323 HasMPX = false; 324 HasSHSTK = false; 325 HasIBT = false; 326 HasSGX = false; 327 HasPCONFIG = false; 328 HasCLFLUSHOPT = false; 329 HasCLWB = false; 330 HasWBNOINVD = false; 331 HasRDPID = false; 332 HasWAITPKG = false; 333 UseRetpoline = false; 334 UseRetpolineExternalThunk = false; 335 IsPMULLDSlow = false; 336 IsSHLDSlow = false; 337 IsUAMem16Slow = false; 338 IsUAMem32Slow = false; 339 HasSSEUnalignedMem = false; 340 HasCmpxchg16b = false; 341 UseLeaForSP = false; 342 HasPOPCNTFalseDeps = false; 343 HasLZCNTFalseDeps = false; 344 HasFastVariableShuffle = false; 345 HasFastPartialYMMorZMMWrite = false; 346 HasFast11ByteNOP = false; 347 HasFast15ByteNOP = false; 348 HasFastGather = false; 349 HasFastScalarFSQRT = false; 350 HasFastVectorFSQRT = false; 351 HasFastLZCNT = false; 352 HasFastSHLDRotate = false; 353 HasMacroFusion = false; 354 HasERMSB = false; 355 HasSlowDivide32 = false; 356 HasSlowDivide64 = false; 357 PadShortFunctions = false; 358 SlowTwoMemOps = false; 359 LEAUsesAG = false; 360 SlowLEA = false; 361 Slow3OpsLEA = false; 362 SlowIncDec = false; 363 stackAlignment = 4; 364 // FIXME: this is a known good value for Yonah. How about others? 365 MaxInlineSizeThreshold = 128; 366 UseSoftFloat = false; 367 X86ProcFamily = Others; 368 GatherOverhead = 1024; 369 ScatterOverhead = 1024; 370 PreferVectorWidth = UINT32_MAX; 371 Prefer256Bit = false; 372 } 373 374 X86Subtarget &X86Subtarget::initializeSubtargetDependencies(StringRef CPU, 375 StringRef FS) { 376 initializeEnvironment(); 377 initSubtargetFeatures(CPU, FS); 378 return *this; 379 } 380 381 X86Subtarget::X86Subtarget(const Triple &TT, StringRef CPU, StringRef FS, 382 const X86TargetMachine &TM, 383 unsigned StackAlignOverride, 384 unsigned PreferVectorWidthOverride, 385 unsigned RequiredVectorWidth) 386 : X86GenSubtargetInfo(TT, CPU, FS), X86ProcFamily(Others), 387 PICStyle(PICStyles::None), TM(TM), TargetTriple(TT), 388 StackAlignOverride(StackAlignOverride), 389 PreferVectorWidthOverride(PreferVectorWidthOverride), 390 RequiredVectorWidth(RequiredVectorWidth), 391 In64BitMode(TargetTriple.getArch() == Triple::x86_64), 392 In32BitMode(TargetTriple.getArch() == Triple::x86 && 393 TargetTriple.getEnvironment() != Triple::CODE16), 394 In16BitMode(TargetTriple.getArch() == Triple::x86 && 395 TargetTriple.getEnvironment() == Triple::CODE16), 396 InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM, *this), 397 FrameLowering(*this, getStackAlignment()) { 398 // Determine the PICStyle based on the target selected. 399 if (!isPositionIndependent()) 400 setPICStyle(PICStyles::None); 401 else if (is64Bit()) 402 setPICStyle(PICStyles::RIPRel); 403 else if (isTargetCOFF()) 404 setPICStyle(PICStyles::None); 405 else if (isTargetDarwin()) 406 setPICStyle(PICStyles::StubPIC); 407 else if (isTargetELF()) 408 setPICStyle(PICStyles::GOT); 409 410 CallLoweringInfo.reset(new X86CallLowering(*getTargetLowering())); 411 Legalizer.reset(new X86LegalizerInfo(*this, TM)); 412 413 auto *RBI = new X86RegisterBankInfo(*getRegisterInfo()); 414 RegBankInfo.reset(RBI); 415 InstSelector.reset(createX86InstructionSelector(TM, *this, *RBI)); 416 } 417 418 const CallLowering *X86Subtarget::getCallLowering() const { 419 return CallLoweringInfo.get(); 420 } 421 422 const InstructionSelector *X86Subtarget::getInstructionSelector() const { 423 return InstSelector.get(); 424 } 425 426 const LegalizerInfo *X86Subtarget::getLegalizerInfo() const { 427 return Legalizer.get(); 428 } 429 430 const RegisterBankInfo *X86Subtarget::getRegBankInfo() const { 431 return RegBankInfo.get(); 432 } 433 434 bool X86Subtarget::enableEarlyIfConversion() const { 435 return hasCMov() && X86EarlyIfConv; 436 } 437