1 //===-- X86FastISel.cpp - X86 FastISel implementation ---------------------===// 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 defines the X86-specific support for the FastISel class. Much 11 // of the target-specific code is generated by tablegen in the file 12 // X86GenFastISel.inc, which is #included here. 13 // 14 //===----------------------------------------------------------------------===// 15 16 #include "X86.h" 17 #include "X86CallingConv.h" 18 #include "X86InstrBuilder.h" 19 #include "X86InstrInfo.h" 20 #include "X86MachineFunctionInfo.h" 21 #include "X86RegisterInfo.h" 22 #include "X86Subtarget.h" 23 #include "X86TargetMachine.h" 24 #include "llvm/Analysis/BranchProbabilityInfo.h" 25 #include "llvm/CodeGen/FastISel.h" 26 #include "llvm/CodeGen/FunctionLoweringInfo.h" 27 #include "llvm/CodeGen/MachineConstantPool.h" 28 #include "llvm/CodeGen/MachineFrameInfo.h" 29 #include "llvm/CodeGen/MachineRegisterInfo.h" 30 #include "llvm/IR/CallSite.h" 31 #include "llvm/IR/CallingConv.h" 32 #include "llvm/IR/DebugInfo.h" 33 #include "llvm/IR/DerivedTypes.h" 34 #include "llvm/IR/GetElementPtrTypeIterator.h" 35 #include "llvm/IR/GlobalAlias.h" 36 #include "llvm/IR/GlobalVariable.h" 37 #include "llvm/IR/Instructions.h" 38 #include "llvm/IR/IntrinsicInst.h" 39 #include "llvm/IR/Operator.h" 40 #include "llvm/MC/MCAsmInfo.h" 41 #include "llvm/MC/MCSymbol.h" 42 #include "llvm/Support/ErrorHandling.h" 43 #include "llvm/Target/TargetOptions.h" 44 using namespace llvm; 45 46 namespace { 47 48 class X86FastISel final : public FastISel { 49 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can 50 /// make the right decision when generating code for different targets. 51 const X86Subtarget *Subtarget; 52 53 /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87 54 /// floating point ops. 55 /// When SSE is available, use it for f32 operations. 56 /// When SSE2 is available, use it for f64 operations. 57 bool X86ScalarSSEf64; 58 bool X86ScalarSSEf32; 59 60 public: 61 explicit X86FastISel(FunctionLoweringInfo &funcInfo, 62 const TargetLibraryInfo *libInfo) 63 : FastISel(funcInfo, libInfo) { 64 Subtarget = &funcInfo.MF->getSubtarget<X86Subtarget>(); 65 X86ScalarSSEf64 = Subtarget->hasSSE2(); 66 X86ScalarSSEf32 = Subtarget->hasSSE1(); 67 } 68 69 bool fastSelectInstruction(const Instruction *I) override; 70 71 /// \brief The specified machine instr operand is a vreg, and that 72 /// vreg is being provided by the specified load instruction. If possible, 73 /// try to fold the load as an operand to the instruction, returning true if 74 /// possible. 75 bool tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo, 76 const LoadInst *LI) override; 77 78 bool fastLowerArguments() override; 79 bool fastLowerCall(CallLoweringInfo &CLI) override; 80 bool fastLowerIntrinsicCall(const IntrinsicInst *II) override; 81 82 #include "X86GenFastISel.inc" 83 84 private: 85 bool X86FastEmitCompare(const Value *LHS, const Value *RHS, EVT VT, 86 const DebugLoc &DL); 87 88 bool X86FastEmitLoad(EVT VT, X86AddressMode &AM, MachineMemOperand *MMO, 89 unsigned &ResultReg, unsigned Alignment = 1); 90 91 bool X86FastEmitStore(EVT VT, const Value *Val, X86AddressMode &AM, 92 MachineMemOperand *MMO = nullptr, bool Aligned = false); 93 bool X86FastEmitStore(EVT VT, unsigned ValReg, bool ValIsKill, 94 X86AddressMode &AM, 95 MachineMemOperand *MMO = nullptr, bool Aligned = false); 96 97 bool X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT, 98 unsigned &ResultReg); 99 100 bool X86SelectAddress(const Value *V, X86AddressMode &AM); 101 bool X86SelectCallAddress(const Value *V, X86AddressMode &AM); 102 103 bool X86SelectLoad(const Instruction *I); 104 105 bool X86SelectStore(const Instruction *I); 106 107 bool X86SelectRet(const Instruction *I); 108 109 bool X86SelectCmp(const Instruction *I); 110 111 bool X86SelectZExt(const Instruction *I); 112 113 bool X86SelectBranch(const Instruction *I); 114 115 bool X86SelectShift(const Instruction *I); 116 117 bool X86SelectDivRem(const Instruction *I); 118 119 bool X86FastEmitCMoveSelect(MVT RetVT, const Instruction *I); 120 121 bool X86FastEmitSSESelect(MVT RetVT, const Instruction *I); 122 123 bool X86FastEmitPseudoSelect(MVT RetVT, const Instruction *I); 124 125 bool X86SelectSelect(const Instruction *I); 126 127 bool X86SelectTrunc(const Instruction *I); 128 129 bool X86SelectFPExtOrFPTrunc(const Instruction *I, unsigned Opc, 130 const TargetRegisterClass *RC); 131 132 bool X86SelectFPExt(const Instruction *I); 133 bool X86SelectFPTrunc(const Instruction *I); 134 bool X86SelectSIToFP(const Instruction *I); 135 136 const X86InstrInfo *getInstrInfo() const { 137 return Subtarget->getInstrInfo(); 138 } 139 const X86TargetMachine *getTargetMachine() const { 140 return static_cast<const X86TargetMachine *>(&TM); 141 } 142 143 bool handleConstantAddresses(const Value *V, X86AddressMode &AM); 144 145 unsigned X86MaterializeInt(const ConstantInt *CI, MVT VT); 146 unsigned X86MaterializeFP(const ConstantFP *CFP, MVT VT); 147 unsigned X86MaterializeGV(const GlobalValue *GV, MVT VT); 148 unsigned fastMaterializeConstant(const Constant *C) override; 149 150 unsigned fastMaterializeAlloca(const AllocaInst *C) override; 151 152 unsigned fastMaterializeFloatZero(const ConstantFP *CF) override; 153 154 /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is 155 /// computed in an SSE register, not on the X87 floating point stack. 156 bool isScalarFPTypeInSSEReg(EVT VT) const { 157 return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2 158 (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1 159 } 160 161 bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false); 162 163 bool IsMemcpySmall(uint64_t Len); 164 165 bool TryEmitSmallMemcpy(X86AddressMode DestAM, 166 X86AddressMode SrcAM, uint64_t Len); 167 168 bool foldX86XALUIntrinsic(X86::CondCode &CC, const Instruction *I, 169 const Value *Cond); 170 171 const MachineInstrBuilder &addFullAddress(const MachineInstrBuilder &MIB, 172 X86AddressMode &AM); 173 174 unsigned fastEmitInst_rrrr(unsigned MachineInstOpcode, 175 const TargetRegisterClass *RC, unsigned Op0, 176 bool Op0IsKill, unsigned Op1, bool Op1IsKill, 177 unsigned Op2, bool Op2IsKill, unsigned Op3, 178 bool Op3IsKill); 179 }; 180 181 } // end anonymous namespace. 182 183 static std::pair<X86::CondCode, bool> 184 getX86ConditionCode(CmpInst::Predicate Predicate) { 185 X86::CondCode CC = X86::COND_INVALID; 186 bool NeedSwap = false; 187 switch (Predicate) { 188 default: break; 189 // Floating-point Predicates 190 case CmpInst::FCMP_UEQ: CC = X86::COND_E; break; 191 case CmpInst::FCMP_OLT: NeedSwap = true; LLVM_FALLTHROUGH; 192 case CmpInst::FCMP_OGT: CC = X86::COND_A; break; 193 case CmpInst::FCMP_OLE: NeedSwap = true; LLVM_FALLTHROUGH; 194 case CmpInst::FCMP_OGE: CC = X86::COND_AE; break; 195 case CmpInst::FCMP_UGT: NeedSwap = true; LLVM_FALLTHROUGH; 196 case CmpInst::FCMP_ULT: CC = X86::COND_B; break; 197 case CmpInst::FCMP_UGE: NeedSwap = true; LLVM_FALLTHROUGH; 198 case CmpInst::FCMP_ULE: CC = X86::COND_BE; break; 199 case CmpInst::FCMP_ONE: CC = X86::COND_NE; break; 200 case CmpInst::FCMP_UNO: CC = X86::COND_P; break; 201 case CmpInst::FCMP_ORD: CC = X86::COND_NP; break; 202 case CmpInst::FCMP_OEQ: LLVM_FALLTHROUGH; 203 case CmpInst::FCMP_UNE: CC = X86::COND_INVALID; break; 204 205 // Integer Predicates 206 case CmpInst::ICMP_EQ: CC = X86::COND_E; break; 207 case CmpInst::ICMP_NE: CC = X86::COND_NE; break; 208 case CmpInst::ICMP_UGT: CC = X86::COND_A; break; 209 case CmpInst::ICMP_UGE: CC = X86::COND_AE; break; 210 case CmpInst::ICMP_ULT: CC = X86::COND_B; break; 211 case CmpInst::ICMP_ULE: CC = X86::COND_BE; break; 212 case CmpInst::ICMP_SGT: CC = X86::COND_G; break; 213 case CmpInst::ICMP_SGE: CC = X86::COND_GE; break; 214 case CmpInst::ICMP_SLT: CC = X86::COND_L; break; 215 case CmpInst::ICMP_SLE: CC = X86::COND_LE; break; 216 } 217 218 return std::make_pair(CC, NeedSwap); 219 } 220 221 static std::pair<unsigned, bool> 222 getX86SSEConditionCode(CmpInst::Predicate Predicate) { 223 unsigned CC; 224 bool NeedSwap = false; 225 226 // SSE Condition code mapping: 227 // 0 - EQ 228 // 1 - LT 229 // 2 - LE 230 // 3 - UNORD 231 // 4 - NEQ 232 // 5 - NLT 233 // 6 - NLE 234 // 7 - ORD 235 switch (Predicate) { 236 default: llvm_unreachable("Unexpected predicate"); 237 case CmpInst::FCMP_OEQ: CC = 0; break; 238 case CmpInst::FCMP_OGT: NeedSwap = true; LLVM_FALLTHROUGH; 239 case CmpInst::FCMP_OLT: CC = 1; break; 240 case CmpInst::FCMP_OGE: NeedSwap = true; LLVM_FALLTHROUGH; 241 case CmpInst::FCMP_OLE: CC = 2; break; 242 case CmpInst::FCMP_UNO: CC = 3; break; 243 case CmpInst::FCMP_UNE: CC = 4; break; 244 case CmpInst::FCMP_ULE: NeedSwap = true; LLVM_FALLTHROUGH; 245 case CmpInst::FCMP_UGE: CC = 5; break; 246 case CmpInst::FCMP_ULT: NeedSwap = true; LLVM_FALLTHROUGH; 247 case CmpInst::FCMP_UGT: CC = 6; break; 248 case CmpInst::FCMP_ORD: CC = 7; break; 249 case CmpInst::FCMP_UEQ: 250 case CmpInst::FCMP_ONE: CC = 8; break; 251 } 252 253 return std::make_pair(CC, NeedSwap); 254 } 255 256 /// \brief Adds a complex addressing mode to the given machine instr builder. 257 /// Note, this will constrain the index register. If its not possible to 258 /// constrain the given index register, then a new one will be created. The 259 /// IndexReg field of the addressing mode will be updated to match in this case. 260 const MachineInstrBuilder & 261 X86FastISel::addFullAddress(const MachineInstrBuilder &MIB, 262 X86AddressMode &AM) { 263 // First constrain the index register. It needs to be a GR64_NOSP. 264 AM.IndexReg = constrainOperandRegClass(MIB->getDesc(), AM.IndexReg, 265 MIB->getNumOperands() + 266 X86::AddrIndexReg); 267 return ::addFullAddress(MIB, AM); 268 } 269 270 /// \brief Check if it is possible to fold the condition from the XALU intrinsic 271 /// into the user. The condition code will only be updated on success. 272 bool X86FastISel::foldX86XALUIntrinsic(X86::CondCode &CC, const Instruction *I, 273 const Value *Cond) { 274 if (!isa<ExtractValueInst>(Cond)) 275 return false; 276 277 const auto *EV = cast<ExtractValueInst>(Cond); 278 if (!isa<IntrinsicInst>(EV->getAggregateOperand())) 279 return false; 280 281 const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand()); 282 MVT RetVT; 283 const Function *Callee = II->getCalledFunction(); 284 Type *RetTy = 285 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(0U); 286 if (!isTypeLegal(RetTy, RetVT)) 287 return false; 288 289 if (RetVT != MVT::i32 && RetVT != MVT::i64) 290 return false; 291 292 X86::CondCode TmpCC; 293 switch (II->getIntrinsicID()) { 294 default: return false; 295 case Intrinsic::sadd_with_overflow: 296 case Intrinsic::ssub_with_overflow: 297 case Intrinsic::smul_with_overflow: 298 case Intrinsic::umul_with_overflow: TmpCC = X86::COND_O; break; 299 case Intrinsic::uadd_with_overflow: 300 case Intrinsic::usub_with_overflow: TmpCC = X86::COND_B; break; 301 } 302 303 // Check if both instructions are in the same basic block. 304 if (II->getParent() != I->getParent()) 305 return false; 306 307 // Make sure nothing is in the way 308 BasicBlock::const_iterator Start(I); 309 BasicBlock::const_iterator End(II); 310 for (auto Itr = std::prev(Start); Itr != End; --Itr) { 311 // We only expect extractvalue instructions between the intrinsic and the 312 // instruction to be selected. 313 if (!isa<ExtractValueInst>(Itr)) 314 return false; 315 316 // Check that the extractvalue operand comes from the intrinsic. 317 const auto *EVI = cast<ExtractValueInst>(Itr); 318 if (EVI->getAggregateOperand() != II) 319 return false; 320 } 321 322 CC = TmpCC; 323 return true; 324 } 325 326 bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) { 327 EVT evt = TLI.getValueType(DL, Ty, /*HandleUnknown=*/true); 328 if (evt == MVT::Other || !evt.isSimple()) 329 // Unhandled type. Halt "fast" selection and bail. 330 return false; 331 332 VT = evt.getSimpleVT(); 333 // For now, require SSE/SSE2 for performing floating-point operations, 334 // since x87 requires additional work. 335 if (VT == MVT::f64 && !X86ScalarSSEf64) 336 return false; 337 if (VT == MVT::f32 && !X86ScalarSSEf32) 338 return false; 339 // Similarly, no f80 support yet. 340 if (VT == MVT::f80) 341 return false; 342 // We only handle legal types. For example, on x86-32 the instruction 343 // selector contains all of the 64-bit instructions from x86-64, 344 // under the assumption that i64 won't be used if the target doesn't 345 // support it. 346 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT); 347 } 348 349 #include "X86GenCallingConv.inc" 350 351 /// X86FastEmitLoad - Emit a machine instruction to load a value of type VT. 352 /// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV. 353 /// Return true and the result register by reference if it is possible. 354 bool X86FastISel::X86FastEmitLoad(EVT VT, X86AddressMode &AM, 355 MachineMemOperand *MMO, unsigned &ResultReg, 356 unsigned Alignment) { 357 bool HasSSE41 = Subtarget->hasSSE41(); 358 bool HasAVX = Subtarget->hasAVX(); 359 bool HasAVX2 = Subtarget->hasAVX2(); 360 bool HasAVX512 = Subtarget->hasAVX512(); 361 bool HasVLX = Subtarget->hasVLX(); 362 bool IsNonTemporal = MMO && MMO->isNonTemporal(); 363 364 // Get opcode and regclass of the output for the given load instruction. 365 unsigned Opc = 0; 366 const TargetRegisterClass *RC = nullptr; 367 switch (VT.getSimpleVT().SimpleTy) { 368 default: return false; 369 case MVT::i1: 370 case MVT::i8: 371 Opc = X86::MOV8rm; 372 RC = &X86::GR8RegClass; 373 break; 374 case MVT::i16: 375 Opc = X86::MOV16rm; 376 RC = &X86::GR16RegClass; 377 break; 378 case MVT::i32: 379 Opc = X86::MOV32rm; 380 RC = &X86::GR32RegClass; 381 break; 382 case MVT::i64: 383 // Must be in x86-64 mode. 384 Opc = X86::MOV64rm; 385 RC = &X86::GR64RegClass; 386 break; 387 case MVT::f32: 388 if (X86ScalarSSEf32) { 389 Opc = HasAVX512 ? X86::VMOVSSZrm : HasAVX ? X86::VMOVSSrm : X86::MOVSSrm; 390 RC = &X86::FR32RegClass; 391 } else { 392 Opc = X86::LD_Fp32m; 393 RC = &X86::RFP32RegClass; 394 } 395 break; 396 case MVT::f64: 397 if (X86ScalarSSEf64) { 398 Opc = HasAVX512 ? X86::VMOVSDZrm : HasAVX ? X86::VMOVSDrm : X86::MOVSDrm; 399 RC = &X86::FR64RegClass; 400 } else { 401 Opc = X86::LD_Fp64m; 402 RC = &X86::RFP64RegClass; 403 } 404 break; 405 case MVT::f80: 406 // No f80 support yet. 407 return false; 408 case MVT::v4f32: 409 if (IsNonTemporal && Alignment >= 16 && HasSSE41) 410 Opc = HasVLX ? X86::VMOVNTDQAZ128rm : 411 HasAVX ? X86::VMOVNTDQArm : X86::MOVNTDQArm; 412 else if (Alignment >= 16) 413 Opc = HasVLX ? X86::VMOVAPSZ128rm : 414 HasAVX ? X86::VMOVAPSrm : X86::MOVAPSrm; 415 else 416 Opc = HasVLX ? X86::VMOVUPSZ128rm : 417 HasAVX ? X86::VMOVUPSrm : X86::MOVUPSrm; 418 RC = &X86::VR128RegClass; 419 break; 420 case MVT::v2f64: 421 if (IsNonTemporal && Alignment >= 16 && HasSSE41) 422 Opc = HasVLX ? X86::VMOVNTDQAZ128rm : 423 HasAVX ? X86::VMOVNTDQArm : X86::MOVNTDQArm; 424 else if (Alignment >= 16) 425 Opc = HasVLX ? X86::VMOVAPDZ128rm : 426 HasAVX ? X86::VMOVAPDrm : X86::MOVAPDrm; 427 else 428 Opc = HasVLX ? X86::VMOVUPDZ128rm : 429 HasAVX ? X86::VMOVUPDrm : X86::MOVUPDrm; 430 RC = &X86::VR128RegClass; 431 break; 432 case MVT::v4i32: 433 case MVT::v2i64: 434 case MVT::v8i16: 435 case MVT::v16i8: 436 if (IsNonTemporal && Alignment >= 16) 437 Opc = HasVLX ? X86::VMOVNTDQAZ128rm : 438 HasAVX ? X86::VMOVNTDQArm : X86::MOVNTDQArm; 439 else if (Alignment >= 16) 440 Opc = HasVLX ? X86::VMOVDQA64Z128rm : 441 HasAVX ? X86::VMOVDQArm : X86::MOVDQArm; 442 else 443 Opc = HasVLX ? X86::VMOVDQU64Z128rm : 444 HasAVX ? X86::VMOVDQUrm : X86::MOVDQUrm; 445 RC = &X86::VR128RegClass; 446 break; 447 case MVT::v8f32: 448 assert(HasAVX); 449 if (IsNonTemporal && Alignment >= 32 && HasAVX2) 450 Opc = HasVLX ? X86::VMOVNTDQAZ256rm : X86::VMOVNTDQAYrm; 451 else if (Alignment >= 32) 452 Opc = HasVLX ? X86::VMOVAPSZ256rm : X86::VMOVAPSYrm; 453 else 454 Opc = HasVLX ? X86::VMOVUPSZ256rm : X86::VMOVUPSYrm; 455 RC = &X86::VR256RegClass; 456 break; 457 case MVT::v4f64: 458 assert(HasAVX); 459 if (IsNonTemporal && Alignment >= 32 && HasAVX2) 460 Opc = X86::VMOVNTDQAYrm; 461 else if (Alignment >= 32) 462 Opc = HasVLX ? X86::VMOVAPDZ256rm : X86::VMOVAPDYrm; 463 else 464 Opc = HasVLX ? X86::VMOVUPDZ256rm : X86::VMOVUPDYrm; 465 RC = &X86::VR256RegClass; 466 break; 467 case MVT::v8i32: 468 case MVT::v4i64: 469 case MVT::v16i16: 470 case MVT::v32i8: 471 assert(HasAVX); 472 if (IsNonTemporal && Alignment >= 32 && HasAVX2) 473 Opc = X86::VMOVNTDQAYrm; 474 else if (Alignment >= 32) 475 Opc = HasVLX ? X86::VMOVDQA64Z256rm : X86::VMOVDQAYrm; 476 else 477 Opc = HasVLX ? X86::VMOVDQU64Z256rm : X86::VMOVDQUYrm; 478 RC = &X86::VR256RegClass; 479 break; 480 case MVT::v16f32: 481 assert(HasAVX512); 482 if (IsNonTemporal && Alignment >= 64) 483 Opc = X86::VMOVNTDQAZrm; 484 else 485 Opc = (Alignment >= 64) ? X86::VMOVAPSZrm : X86::VMOVUPSZrm; 486 RC = &X86::VR512RegClass; 487 break; 488 case MVT::v8f64: 489 assert(HasAVX512); 490 if (IsNonTemporal && Alignment >= 64) 491 Opc = X86::VMOVNTDQAZrm; 492 else 493 Opc = (Alignment >= 64) ? X86::VMOVAPDZrm : X86::VMOVUPDZrm; 494 RC = &X86::VR512RegClass; 495 break; 496 case MVT::v8i64: 497 case MVT::v16i32: 498 case MVT::v32i16: 499 case MVT::v64i8: 500 assert(HasAVX512); 501 // Note: There are a lot more choices based on type with AVX-512, but 502 // there's really no advantage when the load isn't masked. 503 if (IsNonTemporal && Alignment >= 64) 504 Opc = X86::VMOVNTDQAZrm; 505 else 506 Opc = (Alignment >= 64) ? X86::VMOVDQA64Zrm : X86::VMOVDQU64Zrm; 507 RC = &X86::VR512RegClass; 508 break; 509 } 510 511 ResultReg = createResultReg(RC); 512 MachineInstrBuilder MIB = 513 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg); 514 addFullAddress(MIB, AM); 515 if (MMO) 516 MIB->addMemOperand(*FuncInfo.MF, MMO); 517 return true; 518 } 519 520 /// X86FastEmitStore - Emit a machine instruction to store a value Val of 521 /// type VT. The address is either pre-computed, consisted of a base ptr, Ptr 522 /// and a displacement offset, or a GlobalAddress, 523 /// i.e. V. Return true if it is possible. 524 bool X86FastISel::X86FastEmitStore(EVT VT, unsigned ValReg, bool ValIsKill, 525 X86AddressMode &AM, 526 MachineMemOperand *MMO, bool Aligned) { 527 bool HasSSE2 = Subtarget->hasSSE2(); 528 bool HasSSE4A = Subtarget->hasSSE4A(); 529 bool HasAVX = Subtarget->hasAVX(); 530 bool HasAVX512 = Subtarget->hasAVX512(); 531 bool HasVLX = Subtarget->hasVLX(); 532 bool IsNonTemporal = MMO && MMO->isNonTemporal(); 533 534 // Get opcode and regclass of the output for the given store instruction. 535 unsigned Opc = 0; 536 switch (VT.getSimpleVT().SimpleTy) { 537 case MVT::f80: // No f80 support yet. 538 default: return false; 539 case MVT::i1: { 540 // Mask out all but lowest bit. 541 unsigned AndResult = createResultReg(&X86::GR8RegClass); 542 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 543 TII.get(X86::AND8ri), AndResult) 544 .addReg(ValReg, getKillRegState(ValIsKill)).addImm(1); 545 ValReg = AndResult; 546 LLVM_FALLTHROUGH; // handle i1 as i8. 547 } 548 case MVT::i8: Opc = X86::MOV8mr; break; 549 case MVT::i16: Opc = X86::MOV16mr; break; 550 case MVT::i32: 551 Opc = (IsNonTemporal && HasSSE2) ? X86::MOVNTImr : X86::MOV32mr; 552 break; 553 case MVT::i64: 554 // Must be in x86-64 mode. 555 Opc = (IsNonTemporal && HasSSE2) ? X86::MOVNTI_64mr : X86::MOV64mr; 556 break; 557 case MVT::f32: 558 if (X86ScalarSSEf32) { 559 if (IsNonTemporal && HasSSE4A) 560 Opc = X86::MOVNTSS; 561 else 562 Opc = HasAVX512 ? X86::VMOVSSZmr : 563 HasAVX ? X86::VMOVSSmr : X86::MOVSSmr; 564 } else 565 Opc = X86::ST_Fp32m; 566 break; 567 case MVT::f64: 568 if (X86ScalarSSEf32) { 569 if (IsNonTemporal && HasSSE4A) 570 Opc = X86::MOVNTSD; 571 else 572 Opc = HasAVX512 ? X86::VMOVSDZmr : 573 HasAVX ? X86::VMOVSDmr : X86::MOVSDmr; 574 } else 575 Opc = X86::ST_Fp64m; 576 break; 577 case MVT::v4f32: 578 if (Aligned) { 579 if (IsNonTemporal) 580 Opc = HasVLX ? X86::VMOVNTPSZ128mr : 581 HasAVX ? X86::VMOVNTPSmr : X86::MOVNTPSmr; 582 else 583 Opc = HasVLX ? X86::VMOVAPSZ128mr : 584 HasAVX ? X86::VMOVAPSmr : X86::MOVAPSmr; 585 } else 586 Opc = HasVLX ? X86::VMOVUPSZ128mr : 587 HasAVX ? X86::VMOVUPSmr : X86::MOVUPSmr; 588 break; 589 case MVT::v2f64: 590 if (Aligned) { 591 if (IsNonTemporal) 592 Opc = HasVLX ? X86::VMOVNTPDZ128mr : 593 HasAVX ? X86::VMOVNTPDmr : X86::MOVNTPDmr; 594 else 595 Opc = HasVLX ? X86::VMOVAPDZ128mr : 596 HasAVX ? X86::VMOVAPDmr : X86::MOVAPDmr; 597 } else 598 Opc = HasVLX ? X86::VMOVUPDZ128mr : 599 HasAVX ? X86::VMOVUPDmr : X86::MOVUPDmr; 600 break; 601 case MVT::v4i32: 602 case MVT::v2i64: 603 case MVT::v8i16: 604 case MVT::v16i8: 605 if (Aligned) { 606 if (IsNonTemporal) 607 Opc = HasVLX ? X86::VMOVNTDQZ128mr : 608 HasAVX ? X86::VMOVNTDQmr : X86::MOVNTDQmr; 609 else 610 Opc = HasVLX ? X86::VMOVDQA64Z128mr : 611 HasAVX ? X86::VMOVDQAmr : X86::MOVDQAmr; 612 } else 613 Opc = HasVLX ? X86::VMOVDQU64Z128mr : 614 HasAVX ? X86::VMOVDQUmr : X86::MOVDQUmr; 615 break; 616 case MVT::v8f32: 617 assert(HasAVX); 618 if (Aligned) { 619 if (IsNonTemporal) 620 Opc = HasVLX ? X86::VMOVNTPSZ256mr : X86::VMOVNTPSYmr; 621 else 622 Opc = HasVLX ? X86::VMOVAPSZ256mr : X86::VMOVAPSYmr; 623 } else 624 Opc = HasVLX ? X86::VMOVUPSZ256mr : X86::VMOVUPSYmr; 625 break; 626 case MVT::v4f64: 627 assert(HasAVX); 628 if (Aligned) { 629 if (IsNonTemporal) 630 Opc = HasVLX ? X86::VMOVNTPDZ256mr : X86::VMOVNTPDYmr; 631 else 632 Opc = HasVLX ? X86::VMOVAPDZ256mr : X86::VMOVAPDYmr; 633 } else 634 Opc = HasVLX ? X86::VMOVUPDZ256mr : X86::VMOVUPDYmr; 635 break; 636 case MVT::v8i32: 637 case MVT::v4i64: 638 case MVT::v16i16: 639 case MVT::v32i8: 640 assert(HasAVX); 641 if (Aligned) { 642 if (IsNonTemporal) 643 Opc = HasVLX ? X86::VMOVNTDQZ256mr : X86::VMOVNTDQYmr; 644 else 645 Opc = HasVLX ? X86::VMOVDQA64Z256mr : X86::VMOVDQAYmr; 646 } else 647 Opc = HasVLX ? X86::VMOVDQU64Z256mr : X86::VMOVDQUYmr; 648 break; 649 case MVT::v16f32: 650 assert(HasAVX512); 651 if (Aligned) 652 Opc = IsNonTemporal ? X86::VMOVNTPSZmr : X86::VMOVAPSZmr; 653 else 654 Opc = X86::VMOVUPSZmr; 655 break; 656 case MVT::v8f64: 657 assert(HasAVX512); 658 if (Aligned) { 659 Opc = IsNonTemporal ? X86::VMOVNTPDZmr : X86::VMOVAPDZmr; 660 } else 661 Opc = X86::VMOVUPDZmr; 662 break; 663 case MVT::v8i64: 664 case MVT::v16i32: 665 case MVT::v32i16: 666 case MVT::v64i8: 667 assert(HasAVX512); 668 // Note: There are a lot more choices based on type with AVX-512, but 669 // there's really no advantage when the store isn't masked. 670 if (Aligned) 671 Opc = IsNonTemporal ? X86::VMOVNTDQZmr : X86::VMOVDQA64Zmr; 672 else 673 Opc = X86::VMOVDQU64Zmr; 674 break; 675 } 676 677 const MCInstrDesc &Desc = TII.get(Opc); 678 // Some of the instructions in the previous switch use FR128 instead 679 // of FR32 for ValReg. Make sure the register we feed the instruction 680 // matches its register class constraints. 681 // Note: This is fine to do a copy from FR32 to FR128, this is the 682 // same registers behind the scene and actually why it did not trigger 683 // any bugs before. 684 ValReg = constrainOperandRegClass(Desc, ValReg, Desc.getNumOperands() - 1); 685 MachineInstrBuilder MIB = 686 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, Desc); 687 addFullAddress(MIB, AM).addReg(ValReg, getKillRegState(ValIsKill)); 688 if (MMO) 689 MIB->addMemOperand(*FuncInfo.MF, MMO); 690 691 return true; 692 } 693 694 bool X86FastISel::X86FastEmitStore(EVT VT, const Value *Val, 695 X86AddressMode &AM, 696 MachineMemOperand *MMO, bool Aligned) { 697 // Handle 'null' like i32/i64 0. 698 if (isa<ConstantPointerNull>(Val)) 699 Val = Constant::getNullValue(DL.getIntPtrType(Val->getContext())); 700 701 // If this is a store of a simple constant, fold the constant into the store. 702 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Val)) { 703 unsigned Opc = 0; 704 bool Signed = true; 705 switch (VT.getSimpleVT().SimpleTy) { 706 default: break; 707 case MVT::i1: 708 Signed = false; 709 LLVM_FALLTHROUGH; // Handle as i8. 710 case MVT::i8: Opc = X86::MOV8mi; break; 711 case MVT::i16: Opc = X86::MOV16mi; break; 712 case MVT::i32: Opc = X86::MOV32mi; break; 713 case MVT::i64: 714 // Must be a 32-bit sign extended value. 715 if (isInt<32>(CI->getSExtValue())) 716 Opc = X86::MOV64mi32; 717 break; 718 } 719 720 if (Opc) { 721 MachineInstrBuilder MIB = 722 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc)); 723 addFullAddress(MIB, AM).addImm(Signed ? (uint64_t) CI->getSExtValue() 724 : CI->getZExtValue()); 725 if (MMO) 726 MIB->addMemOperand(*FuncInfo.MF, MMO); 727 return true; 728 } 729 } 730 731 unsigned ValReg = getRegForValue(Val); 732 if (ValReg == 0) 733 return false; 734 735 bool ValKill = hasTrivialKill(Val); 736 return X86FastEmitStore(VT, ValReg, ValKill, AM, MMO, Aligned); 737 } 738 739 /// X86FastEmitExtend - Emit a machine instruction to extend a value Src of 740 /// type SrcVT to type DstVT using the specified extension opcode Opc (e.g. 741 /// ISD::SIGN_EXTEND). 742 bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT, 743 unsigned Src, EVT SrcVT, 744 unsigned &ResultReg) { 745 unsigned RR = fastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, 746 Src, /*TODO: Kill=*/false); 747 if (RR == 0) 748 return false; 749 750 ResultReg = RR; 751 return true; 752 } 753 754 bool X86FastISel::handleConstantAddresses(const Value *V, X86AddressMode &AM) { 755 // Handle constant address. 756 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) { 757 // Can't handle alternate code models yet. 758 if (TM.getCodeModel() != CodeModel::Small) 759 return false; 760 761 // Can't handle TLS yet. 762 if (GV->isThreadLocal()) 763 return false; 764 765 // RIP-relative addresses can't have additional register operands, so if 766 // we've already folded stuff into the addressing mode, just force the 767 // global value into its own register, which we can use as the basereg. 768 if (!Subtarget->isPICStyleRIPRel() || 769 (AM.Base.Reg == 0 && AM.IndexReg == 0)) { 770 // Okay, we've committed to selecting this global. Set up the address. 771 AM.GV = GV; 772 773 // Allow the subtarget to classify the global. 774 unsigned char GVFlags = Subtarget->classifyGlobalReference(GV); 775 776 // If this reference is relative to the pic base, set it now. 777 if (isGlobalRelativeToPICBase(GVFlags)) { 778 // FIXME: How do we know Base.Reg is free?? 779 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF); 780 } 781 782 // Unless the ABI requires an extra load, return a direct reference to 783 // the global. 784 if (!isGlobalStubReference(GVFlags)) { 785 if (Subtarget->isPICStyleRIPRel()) { 786 // Use rip-relative addressing if we can. Above we verified that the 787 // base and index registers are unused. 788 assert(AM.Base.Reg == 0 && AM.IndexReg == 0); 789 AM.Base.Reg = X86::RIP; 790 } 791 AM.GVOpFlags = GVFlags; 792 return true; 793 } 794 795 // Ok, we need to do a load from a stub. If we've already loaded from 796 // this stub, reuse the loaded pointer, otherwise emit the load now. 797 DenseMap<const Value *, unsigned>::iterator I = LocalValueMap.find(V); 798 unsigned LoadReg; 799 if (I != LocalValueMap.end() && I->second != 0) { 800 LoadReg = I->second; 801 } else { 802 // Issue load from stub. 803 unsigned Opc = 0; 804 const TargetRegisterClass *RC = nullptr; 805 X86AddressMode StubAM; 806 StubAM.Base.Reg = AM.Base.Reg; 807 StubAM.GV = GV; 808 StubAM.GVOpFlags = GVFlags; 809 810 // Prepare for inserting code in the local-value area. 811 SavePoint SaveInsertPt = enterLocalValueArea(); 812 813 if (TLI.getPointerTy(DL) == MVT::i64) { 814 Opc = X86::MOV64rm; 815 RC = &X86::GR64RegClass; 816 817 if (Subtarget->isPICStyleRIPRel()) 818 StubAM.Base.Reg = X86::RIP; 819 } else { 820 Opc = X86::MOV32rm; 821 RC = &X86::GR32RegClass; 822 } 823 824 LoadReg = createResultReg(RC); 825 MachineInstrBuilder LoadMI = 826 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), LoadReg); 827 addFullAddress(LoadMI, StubAM); 828 829 // Ok, back to normal mode. 830 leaveLocalValueArea(SaveInsertPt); 831 832 // Prevent loading GV stub multiple times in same MBB. 833 LocalValueMap[V] = LoadReg; 834 } 835 836 // Now construct the final address. Note that the Disp, Scale, 837 // and Index values may already be set here. 838 AM.Base.Reg = LoadReg; 839 AM.GV = nullptr; 840 return true; 841 } 842 } 843 844 // If all else fails, try to materialize the value in a register. 845 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) { 846 if (AM.Base.Reg == 0) { 847 AM.Base.Reg = getRegForValue(V); 848 return AM.Base.Reg != 0; 849 } 850 if (AM.IndexReg == 0) { 851 assert(AM.Scale == 1 && "Scale with no index!"); 852 AM.IndexReg = getRegForValue(V); 853 return AM.IndexReg != 0; 854 } 855 } 856 857 return false; 858 } 859 860 /// X86SelectAddress - Attempt to fill in an address from the given value. 861 /// 862 bool X86FastISel::X86SelectAddress(const Value *V, X86AddressMode &AM) { 863 SmallVector<const Value *, 32> GEPs; 864 redo_gep: 865 const User *U = nullptr; 866 unsigned Opcode = Instruction::UserOp1; 867 if (const Instruction *I = dyn_cast<Instruction>(V)) { 868 // Don't walk into other basic blocks; it's possible we haven't 869 // visited them yet, so the instructions may not yet be assigned 870 // virtual registers. 871 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(V)) || 872 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) { 873 Opcode = I->getOpcode(); 874 U = I; 875 } 876 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) { 877 Opcode = C->getOpcode(); 878 U = C; 879 } 880 881 if (PointerType *Ty = dyn_cast<PointerType>(V->getType())) 882 if (Ty->getAddressSpace() > 255) 883 // Fast instruction selection doesn't support the special 884 // address spaces. 885 return false; 886 887 switch (Opcode) { 888 default: break; 889 case Instruction::BitCast: 890 // Look past bitcasts. 891 return X86SelectAddress(U->getOperand(0), AM); 892 893 case Instruction::IntToPtr: 894 // Look past no-op inttoptrs. 895 if (TLI.getValueType(DL, U->getOperand(0)->getType()) == 896 TLI.getPointerTy(DL)) 897 return X86SelectAddress(U->getOperand(0), AM); 898 break; 899 900 case Instruction::PtrToInt: 901 // Look past no-op ptrtoints. 902 if (TLI.getValueType(DL, U->getType()) == TLI.getPointerTy(DL)) 903 return X86SelectAddress(U->getOperand(0), AM); 904 break; 905 906 case Instruction::Alloca: { 907 // Do static allocas. 908 const AllocaInst *A = cast<AllocaInst>(V); 909 DenseMap<const AllocaInst *, int>::iterator SI = 910 FuncInfo.StaticAllocaMap.find(A); 911 if (SI != FuncInfo.StaticAllocaMap.end()) { 912 AM.BaseType = X86AddressMode::FrameIndexBase; 913 AM.Base.FrameIndex = SI->second; 914 return true; 915 } 916 break; 917 } 918 919 case Instruction::Add: { 920 // Adds of constants are common and easy enough. 921 if (const ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) { 922 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue(); 923 // They have to fit in the 32-bit signed displacement field though. 924 if (isInt<32>(Disp)) { 925 AM.Disp = (uint32_t)Disp; 926 return X86SelectAddress(U->getOperand(0), AM); 927 } 928 } 929 break; 930 } 931 932 case Instruction::GetElementPtr: { 933 X86AddressMode SavedAM = AM; 934 935 // Pattern-match simple GEPs. 936 uint64_t Disp = (int32_t)AM.Disp; 937 unsigned IndexReg = AM.IndexReg; 938 unsigned Scale = AM.Scale; 939 gep_type_iterator GTI = gep_type_begin(U); 940 // Iterate through the indices, folding what we can. Constants can be 941 // folded, and one dynamic index can be handled, if the scale is supported. 942 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end(); 943 i != e; ++i, ++GTI) { 944 const Value *Op = *i; 945 if (StructType *STy = GTI.getStructTypeOrNull()) { 946 const StructLayout *SL = DL.getStructLayout(STy); 947 Disp += SL->getElementOffset(cast<ConstantInt>(Op)->getZExtValue()); 948 continue; 949 } 950 951 // A array/variable index is always of the form i*S where S is the 952 // constant scale size. See if we can push the scale into immediates. 953 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType()); 954 for (;;) { 955 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) { 956 // Constant-offset addressing. 957 Disp += CI->getSExtValue() * S; 958 break; 959 } 960 if (canFoldAddIntoGEP(U, Op)) { 961 // A compatible add with a constant operand. Fold the constant. 962 ConstantInt *CI = 963 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1)); 964 Disp += CI->getSExtValue() * S; 965 // Iterate on the other operand. 966 Op = cast<AddOperator>(Op)->getOperand(0); 967 continue; 968 } 969 if (IndexReg == 0 && 970 (!AM.GV || !Subtarget->isPICStyleRIPRel()) && 971 (S == 1 || S == 2 || S == 4 || S == 8)) { 972 // Scaled-index addressing. 973 Scale = S; 974 IndexReg = getRegForGEPIndex(Op).first; 975 if (IndexReg == 0) 976 return false; 977 break; 978 } 979 // Unsupported. 980 goto unsupported_gep; 981 } 982 } 983 984 // Check for displacement overflow. 985 if (!isInt<32>(Disp)) 986 break; 987 988 AM.IndexReg = IndexReg; 989 AM.Scale = Scale; 990 AM.Disp = (uint32_t)Disp; 991 GEPs.push_back(V); 992 993 if (const GetElementPtrInst *GEP = 994 dyn_cast<GetElementPtrInst>(U->getOperand(0))) { 995 // Ok, the GEP indices were covered by constant-offset and scaled-index 996 // addressing. Update the address state and move on to examining the base. 997 V = GEP; 998 goto redo_gep; 999 } else if (X86SelectAddress(U->getOperand(0), AM)) { 1000 return true; 1001 } 1002 1003 // If we couldn't merge the gep value into this addr mode, revert back to 1004 // our address and just match the value instead of completely failing. 1005 AM = SavedAM; 1006 1007 for (const Value *I : reverse(GEPs)) 1008 if (handleConstantAddresses(I, AM)) 1009 return true; 1010 1011 return false; 1012 unsupported_gep: 1013 // Ok, the GEP indices weren't all covered. 1014 break; 1015 } 1016 } 1017 1018 return handleConstantAddresses(V, AM); 1019 } 1020 1021 /// X86SelectCallAddress - Attempt to fill in an address from the given value. 1022 /// 1023 bool X86FastISel::X86SelectCallAddress(const Value *V, X86AddressMode &AM) { 1024 const User *U = nullptr; 1025 unsigned Opcode = Instruction::UserOp1; 1026 const Instruction *I = dyn_cast<Instruction>(V); 1027 // Record if the value is defined in the same basic block. 1028 // 1029 // This information is crucial to know whether or not folding an 1030 // operand is valid. 1031 // Indeed, FastISel generates or reuses a virtual register for all 1032 // operands of all instructions it selects. Obviously, the definition and 1033 // its uses must use the same virtual register otherwise the produced 1034 // code is incorrect. 1035 // Before instruction selection, FunctionLoweringInfo::set sets the virtual 1036 // registers for values that are alive across basic blocks. This ensures 1037 // that the values are consistently set between across basic block, even 1038 // if different instruction selection mechanisms are used (e.g., a mix of 1039 // SDISel and FastISel). 1040 // For values local to a basic block, the instruction selection process 1041 // generates these virtual registers with whatever method is appropriate 1042 // for its needs. In particular, FastISel and SDISel do not share the way 1043 // local virtual registers are set. 1044 // Therefore, this is impossible (or at least unsafe) to share values 1045 // between basic blocks unless they use the same instruction selection 1046 // method, which is not guarantee for X86. 1047 // Moreover, things like hasOneUse could not be used accurately, if we 1048 // allow to reference values across basic blocks whereas they are not 1049 // alive across basic blocks initially. 1050 bool InMBB = true; 1051 if (I) { 1052 Opcode = I->getOpcode(); 1053 U = I; 1054 InMBB = I->getParent() == FuncInfo.MBB->getBasicBlock(); 1055 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(V)) { 1056 Opcode = C->getOpcode(); 1057 U = C; 1058 } 1059 1060 switch (Opcode) { 1061 default: break; 1062 case Instruction::BitCast: 1063 // Look past bitcasts if its operand is in the same BB. 1064 if (InMBB) 1065 return X86SelectCallAddress(U->getOperand(0), AM); 1066 break; 1067 1068 case Instruction::IntToPtr: 1069 // Look past no-op inttoptrs if its operand is in the same BB. 1070 if (InMBB && 1071 TLI.getValueType(DL, U->getOperand(0)->getType()) == 1072 TLI.getPointerTy(DL)) 1073 return X86SelectCallAddress(U->getOperand(0), AM); 1074 break; 1075 1076 case Instruction::PtrToInt: 1077 // Look past no-op ptrtoints if its operand is in the same BB. 1078 if (InMBB && TLI.getValueType(DL, U->getType()) == TLI.getPointerTy(DL)) 1079 return X86SelectCallAddress(U->getOperand(0), AM); 1080 break; 1081 } 1082 1083 // Handle constant address. 1084 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) { 1085 // Can't handle alternate code models yet. 1086 if (TM.getCodeModel() != CodeModel::Small) 1087 return false; 1088 1089 // RIP-relative addresses can't have additional register operands. 1090 if (Subtarget->isPICStyleRIPRel() && 1091 (AM.Base.Reg != 0 || AM.IndexReg != 0)) 1092 return false; 1093 1094 // Can't handle DLL Import. 1095 if (GV->hasDLLImportStorageClass()) 1096 return false; 1097 1098 // Can't handle TLS. 1099 if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) 1100 if (GVar->isThreadLocal()) 1101 return false; 1102 1103 // Okay, we've committed to selecting this global. Set up the basic address. 1104 AM.GV = GV; 1105 1106 // No ABI requires an extra load for anything other than DLLImport, which 1107 // we rejected above. Return a direct reference to the global. 1108 if (Subtarget->isPICStyleRIPRel()) { 1109 // Use rip-relative addressing if we can. Above we verified that the 1110 // base and index registers are unused. 1111 assert(AM.Base.Reg == 0 && AM.IndexReg == 0); 1112 AM.Base.Reg = X86::RIP; 1113 } else { 1114 AM.GVOpFlags = Subtarget->classifyLocalReference(nullptr); 1115 } 1116 1117 return true; 1118 } 1119 1120 // If all else fails, try to materialize the value in a register. 1121 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) { 1122 if (AM.Base.Reg == 0) { 1123 AM.Base.Reg = getRegForValue(V); 1124 return AM.Base.Reg != 0; 1125 } 1126 if (AM.IndexReg == 0) { 1127 assert(AM.Scale == 1 && "Scale with no index!"); 1128 AM.IndexReg = getRegForValue(V); 1129 return AM.IndexReg != 0; 1130 } 1131 } 1132 1133 return false; 1134 } 1135 1136 1137 /// X86SelectStore - Select and emit code to implement store instructions. 1138 bool X86FastISel::X86SelectStore(const Instruction *I) { 1139 // Atomic stores need special handling. 1140 const StoreInst *S = cast<StoreInst>(I); 1141 1142 if (S->isAtomic()) 1143 return false; 1144 1145 const Value *PtrV = I->getOperand(1); 1146 if (TLI.supportSwiftError()) { 1147 // Swifterror values can come from either a function parameter with 1148 // swifterror attribute or an alloca with swifterror attribute. 1149 if (const Argument *Arg = dyn_cast<Argument>(PtrV)) { 1150 if (Arg->hasSwiftErrorAttr()) 1151 return false; 1152 } 1153 1154 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(PtrV)) { 1155 if (Alloca->isSwiftError()) 1156 return false; 1157 } 1158 } 1159 1160 const Value *Val = S->getValueOperand(); 1161 const Value *Ptr = S->getPointerOperand(); 1162 1163 MVT VT; 1164 if (!isTypeLegal(Val->getType(), VT, /*AllowI1=*/true)) 1165 return false; 1166 1167 unsigned Alignment = S->getAlignment(); 1168 unsigned ABIAlignment = DL.getABITypeAlignment(Val->getType()); 1169 if (Alignment == 0) // Ensure that codegen never sees alignment 0 1170 Alignment = ABIAlignment; 1171 bool Aligned = Alignment >= ABIAlignment; 1172 1173 X86AddressMode AM; 1174 if (!X86SelectAddress(Ptr, AM)) 1175 return false; 1176 1177 return X86FastEmitStore(VT, Val, AM, createMachineMemOperandFor(I), Aligned); 1178 } 1179 1180 /// X86SelectRet - Select and emit code to implement ret instructions. 1181 bool X86FastISel::X86SelectRet(const Instruction *I) { 1182 const ReturnInst *Ret = cast<ReturnInst>(I); 1183 const Function &F = *I->getParent()->getParent(); 1184 const X86MachineFunctionInfo *X86MFInfo = 1185 FuncInfo.MF->getInfo<X86MachineFunctionInfo>(); 1186 1187 if (!FuncInfo.CanLowerReturn) 1188 return false; 1189 1190 if (TLI.supportSwiftError() && 1191 F.getAttributes().hasAttrSomewhere(Attribute::SwiftError)) 1192 return false; 1193 1194 if (TLI.supportSplitCSR(FuncInfo.MF)) 1195 return false; 1196 1197 CallingConv::ID CC = F.getCallingConv(); 1198 if (CC != CallingConv::C && 1199 CC != CallingConv::Fast && 1200 CC != CallingConv::X86_FastCall && 1201 CC != CallingConv::X86_StdCall && 1202 CC != CallingConv::X86_ThisCall && 1203 CC != CallingConv::X86_64_SysV && 1204 CC != CallingConv::X86_64_Win64) 1205 return false; 1206 1207 // Don't handle popping bytes if they don't fit the ret's immediate. 1208 if (!isUInt<16>(X86MFInfo->getBytesToPopOnReturn())) 1209 return false; 1210 1211 // fastcc with -tailcallopt is intended to provide a guaranteed 1212 // tail call optimization. Fastisel doesn't know how to do that. 1213 if (CC == CallingConv::Fast && TM.Options.GuaranteedTailCallOpt) 1214 return false; 1215 1216 // Let SDISel handle vararg functions. 1217 if (F.isVarArg()) 1218 return false; 1219 1220 // Build a list of return value registers. 1221 SmallVector<unsigned, 4> RetRegs; 1222 1223 if (Ret->getNumOperands() > 0) { 1224 SmallVector<ISD::OutputArg, 4> Outs; 1225 GetReturnInfo(F.getReturnType(), F.getAttributes(), Outs, TLI, DL); 1226 1227 // Analyze operands of the call, assigning locations to each operand. 1228 SmallVector<CCValAssign, 16> ValLocs; 1229 CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, ValLocs, I->getContext()); 1230 CCInfo.AnalyzeReturn(Outs, RetCC_X86); 1231 1232 const Value *RV = Ret->getOperand(0); 1233 unsigned Reg = getRegForValue(RV); 1234 if (Reg == 0) 1235 return false; 1236 1237 // Only handle a single return value for now. 1238 if (ValLocs.size() != 1) 1239 return false; 1240 1241 CCValAssign &VA = ValLocs[0]; 1242 1243 // Don't bother handling odd stuff for now. 1244 if (VA.getLocInfo() != CCValAssign::Full) 1245 return false; 1246 // Only handle register returns for now. 1247 if (!VA.isRegLoc()) 1248 return false; 1249 1250 // The calling-convention tables for x87 returns don't tell 1251 // the whole story. 1252 if (VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1) 1253 return false; 1254 1255 unsigned SrcReg = Reg + VA.getValNo(); 1256 EVT SrcVT = TLI.getValueType(DL, RV->getType()); 1257 EVT DstVT = VA.getValVT(); 1258 // Special handling for extended integers. 1259 if (SrcVT != DstVT) { 1260 if (SrcVT != MVT::i1 && SrcVT != MVT::i8 && SrcVT != MVT::i16) 1261 return false; 1262 1263 if (!Outs[0].Flags.isZExt() && !Outs[0].Flags.isSExt()) 1264 return false; 1265 1266 assert(DstVT == MVT::i32 && "X86 should always ext to i32"); 1267 1268 if (SrcVT == MVT::i1) { 1269 if (Outs[0].Flags.isSExt()) 1270 return false; 1271 SrcReg = fastEmitZExtFromI1(MVT::i8, SrcReg, /*TODO: Kill=*/false); 1272 SrcVT = MVT::i8; 1273 } 1274 unsigned Op = Outs[0].Flags.isZExt() ? ISD::ZERO_EXTEND : 1275 ISD::SIGN_EXTEND; 1276 SrcReg = fastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Op, 1277 SrcReg, /*TODO: Kill=*/false); 1278 } 1279 1280 // Make the copy. 1281 unsigned DstReg = VA.getLocReg(); 1282 const TargetRegisterClass *SrcRC = MRI.getRegClass(SrcReg); 1283 // Avoid a cross-class copy. This is very unlikely. 1284 if (!SrcRC->contains(DstReg)) 1285 return false; 1286 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1287 TII.get(TargetOpcode::COPY), DstReg).addReg(SrcReg); 1288 1289 // Add register to return instruction. 1290 RetRegs.push_back(VA.getLocReg()); 1291 } 1292 1293 // Swift calling convention does not require we copy the sret argument 1294 // into %rax/%eax for the return, and SRetReturnReg is not set for Swift. 1295 1296 // All x86 ABIs require that for returning structs by value we copy 1297 // the sret argument into %rax/%eax (depending on ABI) for the return. 1298 // We saved the argument into a virtual register in the entry block, 1299 // so now we copy the value out and into %rax/%eax. 1300 if (F.hasStructRetAttr() && CC != CallingConv::Swift) { 1301 unsigned Reg = X86MFInfo->getSRetReturnReg(); 1302 assert(Reg && 1303 "SRetReturnReg should have been set in LowerFormalArguments()!"); 1304 unsigned RetReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX; 1305 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1306 TII.get(TargetOpcode::COPY), RetReg).addReg(Reg); 1307 RetRegs.push_back(RetReg); 1308 } 1309 1310 // Now emit the RET. 1311 MachineInstrBuilder MIB; 1312 if (X86MFInfo->getBytesToPopOnReturn()) { 1313 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1314 TII.get(Subtarget->is64Bit() ? X86::RETIQ : X86::RETIL)) 1315 .addImm(X86MFInfo->getBytesToPopOnReturn()); 1316 } else { 1317 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1318 TII.get(Subtarget->is64Bit() ? X86::RETQ : X86::RETL)); 1319 } 1320 for (unsigned i = 0, e = RetRegs.size(); i != e; ++i) 1321 MIB.addReg(RetRegs[i], RegState::Implicit); 1322 return true; 1323 } 1324 1325 /// X86SelectLoad - Select and emit code to implement load instructions. 1326 /// 1327 bool X86FastISel::X86SelectLoad(const Instruction *I) { 1328 const LoadInst *LI = cast<LoadInst>(I); 1329 1330 // Atomic loads need special handling. 1331 if (LI->isAtomic()) 1332 return false; 1333 1334 const Value *SV = I->getOperand(0); 1335 if (TLI.supportSwiftError()) { 1336 // Swifterror values can come from either a function parameter with 1337 // swifterror attribute or an alloca with swifterror attribute. 1338 if (const Argument *Arg = dyn_cast<Argument>(SV)) { 1339 if (Arg->hasSwiftErrorAttr()) 1340 return false; 1341 } 1342 1343 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(SV)) { 1344 if (Alloca->isSwiftError()) 1345 return false; 1346 } 1347 } 1348 1349 MVT VT; 1350 if (!isTypeLegal(LI->getType(), VT, /*AllowI1=*/true)) 1351 return false; 1352 1353 const Value *Ptr = LI->getPointerOperand(); 1354 1355 X86AddressMode AM; 1356 if (!X86SelectAddress(Ptr, AM)) 1357 return false; 1358 1359 unsigned Alignment = LI->getAlignment(); 1360 unsigned ABIAlignment = DL.getABITypeAlignment(LI->getType()); 1361 if (Alignment == 0) // Ensure that codegen never sees alignment 0 1362 Alignment = ABIAlignment; 1363 1364 unsigned ResultReg = 0; 1365 if (!X86FastEmitLoad(VT, AM, createMachineMemOperandFor(LI), ResultReg, 1366 Alignment)) 1367 return false; 1368 1369 updateValueMap(I, ResultReg); 1370 return true; 1371 } 1372 1373 static unsigned X86ChooseCmpOpcode(EVT VT, const X86Subtarget *Subtarget) { 1374 bool HasAVX = Subtarget->hasAVX(); 1375 bool X86ScalarSSEf32 = Subtarget->hasSSE1(); 1376 bool X86ScalarSSEf64 = Subtarget->hasSSE2(); 1377 1378 switch (VT.getSimpleVT().SimpleTy) { 1379 default: return 0; 1380 case MVT::i8: return X86::CMP8rr; 1381 case MVT::i16: return X86::CMP16rr; 1382 case MVT::i32: return X86::CMP32rr; 1383 case MVT::i64: return X86::CMP64rr; 1384 case MVT::f32: 1385 return X86ScalarSSEf32 ? (HasAVX ? X86::VUCOMISSrr : X86::UCOMISSrr) : 0; 1386 case MVT::f64: 1387 return X86ScalarSSEf64 ? (HasAVX ? X86::VUCOMISDrr : X86::UCOMISDrr) : 0; 1388 } 1389 } 1390 1391 /// If we have a comparison with RHS as the RHS of the comparison, return an 1392 /// opcode that works for the compare (e.g. CMP32ri) otherwise return 0. 1393 static unsigned X86ChooseCmpImmediateOpcode(EVT VT, const ConstantInt *RHSC) { 1394 int64_t Val = RHSC->getSExtValue(); 1395 switch (VT.getSimpleVT().SimpleTy) { 1396 // Otherwise, we can't fold the immediate into this comparison. 1397 default: 1398 return 0; 1399 case MVT::i8: 1400 return X86::CMP8ri; 1401 case MVT::i16: 1402 if (isInt<8>(Val)) 1403 return X86::CMP16ri8; 1404 return X86::CMP16ri; 1405 case MVT::i32: 1406 if (isInt<8>(Val)) 1407 return X86::CMP32ri8; 1408 return X86::CMP32ri; 1409 case MVT::i64: 1410 if (isInt<8>(Val)) 1411 return X86::CMP64ri8; 1412 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext 1413 // field. 1414 if (isInt<32>(Val)) 1415 return X86::CMP64ri32; 1416 return 0; 1417 } 1418 } 1419 1420 bool X86FastISel::X86FastEmitCompare(const Value *Op0, const Value *Op1, EVT VT, 1421 const DebugLoc &CurDbgLoc) { 1422 unsigned Op0Reg = getRegForValue(Op0); 1423 if (Op0Reg == 0) return false; 1424 1425 // Handle 'null' like i32/i64 0. 1426 if (isa<ConstantPointerNull>(Op1)) 1427 Op1 = Constant::getNullValue(DL.getIntPtrType(Op0->getContext())); 1428 1429 // We have two options: compare with register or immediate. If the RHS of 1430 // the compare is an immediate that we can fold into this compare, use 1431 // CMPri, otherwise use CMPrr. 1432 if (const ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) { 1433 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) { 1434 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, CurDbgLoc, TII.get(CompareImmOpc)) 1435 .addReg(Op0Reg) 1436 .addImm(Op1C->getSExtValue()); 1437 return true; 1438 } 1439 } 1440 1441 unsigned CompareOpc = X86ChooseCmpOpcode(VT, Subtarget); 1442 if (CompareOpc == 0) return false; 1443 1444 unsigned Op1Reg = getRegForValue(Op1); 1445 if (Op1Reg == 0) return false; 1446 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, CurDbgLoc, TII.get(CompareOpc)) 1447 .addReg(Op0Reg) 1448 .addReg(Op1Reg); 1449 1450 return true; 1451 } 1452 1453 bool X86FastISel::X86SelectCmp(const Instruction *I) { 1454 const CmpInst *CI = cast<CmpInst>(I); 1455 1456 MVT VT; 1457 if (!isTypeLegal(I->getOperand(0)->getType(), VT)) 1458 return false; 1459 1460 if (I->getType()->isIntegerTy(1) && Subtarget->hasAVX512()) 1461 return false; 1462 1463 // Try to optimize or fold the cmp. 1464 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI); 1465 unsigned ResultReg = 0; 1466 switch (Predicate) { 1467 default: break; 1468 case CmpInst::FCMP_FALSE: { 1469 ResultReg = createResultReg(&X86::GR32RegClass); 1470 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV32r0), 1471 ResultReg); 1472 ResultReg = fastEmitInst_extractsubreg(MVT::i8, ResultReg, /*Kill=*/true, 1473 X86::sub_8bit); 1474 if (!ResultReg) 1475 return false; 1476 break; 1477 } 1478 case CmpInst::FCMP_TRUE: { 1479 ResultReg = createResultReg(&X86::GR8RegClass); 1480 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV8ri), 1481 ResultReg).addImm(1); 1482 break; 1483 } 1484 } 1485 1486 if (ResultReg) { 1487 updateValueMap(I, ResultReg); 1488 return true; 1489 } 1490 1491 const Value *LHS = CI->getOperand(0); 1492 const Value *RHS = CI->getOperand(1); 1493 1494 // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x, 0.0. 1495 // We don't have to materialize a zero constant for this case and can just use 1496 // %x again on the RHS. 1497 if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) { 1498 const auto *RHSC = dyn_cast<ConstantFP>(RHS); 1499 if (RHSC && RHSC->isNullValue()) 1500 RHS = LHS; 1501 } 1502 1503 // FCMP_OEQ and FCMP_UNE cannot be checked with a single instruction. 1504 static const uint16_t SETFOpcTable[2][3] = { 1505 { X86::SETEr, X86::SETNPr, X86::AND8rr }, 1506 { X86::SETNEr, X86::SETPr, X86::OR8rr } 1507 }; 1508 const uint16_t *SETFOpc = nullptr; 1509 switch (Predicate) { 1510 default: break; 1511 case CmpInst::FCMP_OEQ: SETFOpc = &SETFOpcTable[0][0]; break; 1512 case CmpInst::FCMP_UNE: SETFOpc = &SETFOpcTable[1][0]; break; 1513 } 1514 1515 ResultReg = createResultReg(&X86::GR8RegClass); 1516 if (SETFOpc) { 1517 if (!X86FastEmitCompare(LHS, RHS, VT, I->getDebugLoc())) 1518 return false; 1519 1520 unsigned FlagReg1 = createResultReg(&X86::GR8RegClass); 1521 unsigned FlagReg2 = createResultReg(&X86::GR8RegClass); 1522 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[0]), 1523 FlagReg1); 1524 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[1]), 1525 FlagReg2); 1526 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[2]), 1527 ResultReg).addReg(FlagReg1).addReg(FlagReg2); 1528 updateValueMap(I, ResultReg); 1529 return true; 1530 } 1531 1532 X86::CondCode CC; 1533 bool SwapArgs; 1534 std::tie(CC, SwapArgs) = getX86ConditionCode(Predicate); 1535 assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code."); 1536 unsigned Opc = X86::getSETFromCond(CC); 1537 1538 if (SwapArgs) 1539 std::swap(LHS, RHS); 1540 1541 // Emit a compare of LHS/RHS. 1542 if (!X86FastEmitCompare(LHS, RHS, VT, I->getDebugLoc())) 1543 return false; 1544 1545 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg); 1546 updateValueMap(I, ResultReg); 1547 return true; 1548 } 1549 1550 bool X86FastISel::X86SelectZExt(const Instruction *I) { 1551 EVT DstVT = TLI.getValueType(DL, I->getType()); 1552 if (!TLI.isTypeLegal(DstVT)) 1553 return false; 1554 1555 unsigned ResultReg = getRegForValue(I->getOperand(0)); 1556 if (ResultReg == 0) 1557 return false; 1558 1559 // Handle zero-extension from i1 to i8, which is common. 1560 MVT SrcVT = TLI.getSimpleValueType(DL, I->getOperand(0)->getType()); 1561 if (SrcVT == MVT::i1) { 1562 // Set the high bits to zero. 1563 ResultReg = fastEmitZExtFromI1(MVT::i8, ResultReg, /*TODO: Kill=*/false); 1564 SrcVT = MVT::i8; 1565 1566 if (ResultReg == 0) 1567 return false; 1568 } 1569 1570 if (DstVT == MVT::i64) { 1571 // Handle extension to 64-bits via sub-register shenanigans. 1572 unsigned MovInst; 1573 1574 switch (SrcVT.SimpleTy) { 1575 case MVT::i8: MovInst = X86::MOVZX32rr8; break; 1576 case MVT::i16: MovInst = X86::MOVZX32rr16; break; 1577 case MVT::i32: MovInst = X86::MOV32rr; break; 1578 default: llvm_unreachable("Unexpected zext to i64 source type"); 1579 } 1580 1581 unsigned Result32 = createResultReg(&X86::GR32RegClass); 1582 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(MovInst), Result32) 1583 .addReg(ResultReg); 1584 1585 ResultReg = createResultReg(&X86::GR64RegClass); 1586 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::SUBREG_TO_REG), 1587 ResultReg) 1588 .addImm(0).addReg(Result32).addImm(X86::sub_32bit); 1589 } else if (DstVT != MVT::i8) { 1590 ResultReg = fastEmit_r(MVT::i8, DstVT.getSimpleVT(), ISD::ZERO_EXTEND, 1591 ResultReg, /*Kill=*/true); 1592 if (ResultReg == 0) 1593 return false; 1594 } 1595 1596 updateValueMap(I, ResultReg); 1597 return true; 1598 } 1599 1600 bool X86FastISel::X86SelectBranch(const Instruction *I) { 1601 // Unconditional branches are selected by tablegen-generated code. 1602 // Handle a conditional branch. 1603 const BranchInst *BI = cast<BranchInst>(I); 1604 MachineBasicBlock *TrueMBB = FuncInfo.MBBMap[BI->getSuccessor(0)]; 1605 MachineBasicBlock *FalseMBB = FuncInfo.MBBMap[BI->getSuccessor(1)]; 1606 1607 // Fold the common case of a conditional branch with a comparison 1608 // in the same block (values defined on other blocks may not have 1609 // initialized registers). 1610 X86::CondCode CC; 1611 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) { 1612 if (CI->hasOneUse() && CI->getParent() == I->getParent()) { 1613 EVT VT = TLI.getValueType(DL, CI->getOperand(0)->getType()); 1614 1615 // Try to optimize or fold the cmp. 1616 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI); 1617 switch (Predicate) { 1618 default: break; 1619 case CmpInst::FCMP_FALSE: fastEmitBranch(FalseMBB, DbgLoc); return true; 1620 case CmpInst::FCMP_TRUE: fastEmitBranch(TrueMBB, DbgLoc); return true; 1621 } 1622 1623 const Value *CmpLHS = CI->getOperand(0); 1624 const Value *CmpRHS = CI->getOperand(1); 1625 1626 // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x, 1627 // 0.0. 1628 // We don't have to materialize a zero constant for this case and can just 1629 // use %x again on the RHS. 1630 if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) { 1631 const auto *CmpRHSC = dyn_cast<ConstantFP>(CmpRHS); 1632 if (CmpRHSC && CmpRHSC->isNullValue()) 1633 CmpRHS = CmpLHS; 1634 } 1635 1636 // Try to take advantage of fallthrough opportunities. 1637 if (FuncInfo.MBB->isLayoutSuccessor(TrueMBB)) { 1638 std::swap(TrueMBB, FalseMBB); 1639 Predicate = CmpInst::getInversePredicate(Predicate); 1640 } 1641 1642 // FCMP_OEQ and FCMP_UNE cannot be expressed with a single flag/condition 1643 // code check. Instead two branch instructions are required to check all 1644 // the flags. First we change the predicate to a supported condition code, 1645 // which will be the first branch. Later one we will emit the second 1646 // branch. 1647 bool NeedExtraBranch = false; 1648 switch (Predicate) { 1649 default: break; 1650 case CmpInst::FCMP_OEQ: 1651 std::swap(TrueMBB, FalseMBB); 1652 LLVM_FALLTHROUGH; 1653 case CmpInst::FCMP_UNE: 1654 NeedExtraBranch = true; 1655 Predicate = CmpInst::FCMP_ONE; 1656 break; 1657 } 1658 1659 bool SwapArgs; 1660 unsigned BranchOpc; 1661 std::tie(CC, SwapArgs) = getX86ConditionCode(Predicate); 1662 assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code."); 1663 1664 BranchOpc = X86::GetCondBranchFromCond(CC); 1665 if (SwapArgs) 1666 std::swap(CmpLHS, CmpRHS); 1667 1668 // Emit a compare of the LHS and RHS, setting the flags. 1669 if (!X86FastEmitCompare(CmpLHS, CmpRHS, VT, CI->getDebugLoc())) 1670 return false; 1671 1672 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BranchOpc)) 1673 .addMBB(TrueMBB); 1674 1675 // X86 requires a second branch to handle UNE (and OEQ, which is mapped 1676 // to UNE above). 1677 if (NeedExtraBranch) { 1678 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::JP_1)) 1679 .addMBB(TrueMBB); 1680 } 1681 1682 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB); 1683 return true; 1684 } 1685 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) { 1686 // Handle things like "%cond = trunc i32 %X to i1 / br i1 %cond", which 1687 // typically happen for _Bool and C++ bools. 1688 MVT SourceVT; 1689 if (TI->hasOneUse() && TI->getParent() == I->getParent() && 1690 isTypeLegal(TI->getOperand(0)->getType(), SourceVT)) { 1691 unsigned TestOpc = 0; 1692 switch (SourceVT.SimpleTy) { 1693 default: break; 1694 case MVT::i8: TestOpc = X86::TEST8ri; break; 1695 case MVT::i16: TestOpc = X86::TEST16ri; break; 1696 case MVT::i32: TestOpc = X86::TEST32ri; break; 1697 case MVT::i64: TestOpc = X86::TEST64ri32; break; 1698 } 1699 if (TestOpc) { 1700 unsigned OpReg = getRegForValue(TI->getOperand(0)); 1701 if (OpReg == 0) return false; 1702 1703 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TestOpc)) 1704 .addReg(OpReg).addImm(1); 1705 1706 unsigned JmpOpc = X86::JNE_1; 1707 if (FuncInfo.MBB->isLayoutSuccessor(TrueMBB)) { 1708 std::swap(TrueMBB, FalseMBB); 1709 JmpOpc = X86::JE_1; 1710 } 1711 1712 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(JmpOpc)) 1713 .addMBB(TrueMBB); 1714 1715 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB); 1716 return true; 1717 } 1718 } 1719 } else if (foldX86XALUIntrinsic(CC, BI, BI->getCondition())) { 1720 // Fake request the condition, otherwise the intrinsic might be completely 1721 // optimized away. 1722 unsigned TmpReg = getRegForValue(BI->getCondition()); 1723 if (TmpReg == 0) 1724 return false; 1725 1726 unsigned BranchOpc = X86::GetCondBranchFromCond(CC); 1727 1728 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BranchOpc)) 1729 .addMBB(TrueMBB); 1730 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB); 1731 return true; 1732 } 1733 1734 // Otherwise do a clumsy setcc and re-test it. 1735 // Note that i1 essentially gets ANY_EXTEND'ed to i8 where it isn't used 1736 // in an explicit cast, so make sure to handle that correctly. 1737 unsigned OpReg = getRegForValue(BI->getCondition()); 1738 if (OpReg == 0) return false; 1739 1740 // In case OpReg is a K register, COPY to a GPR 1741 if (MRI.getRegClass(OpReg) == &X86::VK1RegClass) { 1742 unsigned KOpReg = OpReg; 1743 OpReg = createResultReg(&X86::GR8RegClass); 1744 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1745 TII.get(TargetOpcode::COPY), OpReg) 1746 .addReg(KOpReg); 1747 } 1748 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TEST8ri)) 1749 .addReg(OpReg) 1750 .addImm(1); 1751 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::JNE_1)) 1752 .addMBB(TrueMBB); 1753 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB); 1754 return true; 1755 } 1756 1757 bool X86FastISel::X86SelectShift(const Instruction *I) { 1758 unsigned CReg = 0, OpReg = 0; 1759 const TargetRegisterClass *RC = nullptr; 1760 if (I->getType()->isIntegerTy(8)) { 1761 CReg = X86::CL; 1762 RC = &X86::GR8RegClass; 1763 switch (I->getOpcode()) { 1764 case Instruction::LShr: OpReg = X86::SHR8rCL; break; 1765 case Instruction::AShr: OpReg = X86::SAR8rCL; break; 1766 case Instruction::Shl: OpReg = X86::SHL8rCL; break; 1767 default: return false; 1768 } 1769 } else if (I->getType()->isIntegerTy(16)) { 1770 CReg = X86::CX; 1771 RC = &X86::GR16RegClass; 1772 switch (I->getOpcode()) { 1773 case Instruction::LShr: OpReg = X86::SHR16rCL; break; 1774 case Instruction::AShr: OpReg = X86::SAR16rCL; break; 1775 case Instruction::Shl: OpReg = X86::SHL16rCL; break; 1776 default: return false; 1777 } 1778 } else if (I->getType()->isIntegerTy(32)) { 1779 CReg = X86::ECX; 1780 RC = &X86::GR32RegClass; 1781 switch (I->getOpcode()) { 1782 case Instruction::LShr: OpReg = X86::SHR32rCL; break; 1783 case Instruction::AShr: OpReg = X86::SAR32rCL; break; 1784 case Instruction::Shl: OpReg = X86::SHL32rCL; break; 1785 default: return false; 1786 } 1787 } else if (I->getType()->isIntegerTy(64)) { 1788 CReg = X86::RCX; 1789 RC = &X86::GR64RegClass; 1790 switch (I->getOpcode()) { 1791 case Instruction::LShr: OpReg = X86::SHR64rCL; break; 1792 case Instruction::AShr: OpReg = X86::SAR64rCL; break; 1793 case Instruction::Shl: OpReg = X86::SHL64rCL; break; 1794 default: return false; 1795 } 1796 } else { 1797 return false; 1798 } 1799 1800 MVT VT; 1801 if (!isTypeLegal(I->getType(), VT)) 1802 return false; 1803 1804 unsigned Op0Reg = getRegForValue(I->getOperand(0)); 1805 if (Op0Reg == 0) return false; 1806 1807 unsigned Op1Reg = getRegForValue(I->getOperand(1)); 1808 if (Op1Reg == 0) return false; 1809 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY), 1810 CReg).addReg(Op1Reg); 1811 1812 // The shift instruction uses X86::CL. If we defined a super-register 1813 // of X86::CL, emit a subreg KILL to precisely describe what we're doing here. 1814 if (CReg != X86::CL) 1815 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1816 TII.get(TargetOpcode::KILL), X86::CL) 1817 .addReg(CReg, RegState::Kill); 1818 1819 unsigned ResultReg = createResultReg(RC); 1820 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(OpReg), ResultReg) 1821 .addReg(Op0Reg); 1822 updateValueMap(I, ResultReg); 1823 return true; 1824 } 1825 1826 bool X86FastISel::X86SelectDivRem(const Instruction *I) { 1827 const static unsigned NumTypes = 4; // i8, i16, i32, i64 1828 const static unsigned NumOps = 4; // SDiv, SRem, UDiv, URem 1829 const static bool S = true; // IsSigned 1830 const static bool U = false; // !IsSigned 1831 const static unsigned Copy = TargetOpcode::COPY; 1832 // For the X86 DIV/IDIV instruction, in most cases the dividend 1833 // (numerator) must be in a specific register pair highreg:lowreg, 1834 // producing the quotient in lowreg and the remainder in highreg. 1835 // For most data types, to set up the instruction, the dividend is 1836 // copied into lowreg, and lowreg is sign-extended or zero-extended 1837 // into highreg. The exception is i8, where the dividend is defined 1838 // as a single register rather than a register pair, and we 1839 // therefore directly sign-extend or zero-extend the dividend into 1840 // lowreg, instead of copying, and ignore the highreg. 1841 const static struct DivRemEntry { 1842 // The following portion depends only on the data type. 1843 const TargetRegisterClass *RC; 1844 unsigned LowInReg; // low part of the register pair 1845 unsigned HighInReg; // high part of the register pair 1846 // The following portion depends on both the data type and the operation. 1847 struct DivRemResult { 1848 unsigned OpDivRem; // The specific DIV/IDIV opcode to use. 1849 unsigned OpSignExtend; // Opcode for sign-extending lowreg into 1850 // highreg, or copying a zero into highreg. 1851 unsigned OpCopy; // Opcode for copying dividend into lowreg, or 1852 // zero/sign-extending into lowreg for i8. 1853 unsigned DivRemResultReg; // Register containing the desired result. 1854 bool IsOpSigned; // Whether to use signed or unsigned form. 1855 } ResultTable[NumOps]; 1856 } OpTable[NumTypes] = { 1857 { &X86::GR8RegClass, X86::AX, 0, { 1858 { X86::IDIV8r, 0, X86::MOVSX16rr8, X86::AL, S }, // SDiv 1859 { X86::IDIV8r, 0, X86::MOVSX16rr8, X86::AH, S }, // SRem 1860 { X86::DIV8r, 0, X86::MOVZX16rr8, X86::AL, U }, // UDiv 1861 { X86::DIV8r, 0, X86::MOVZX16rr8, X86::AH, U }, // URem 1862 } 1863 }, // i8 1864 { &X86::GR16RegClass, X86::AX, X86::DX, { 1865 { X86::IDIV16r, X86::CWD, Copy, X86::AX, S }, // SDiv 1866 { X86::IDIV16r, X86::CWD, Copy, X86::DX, S }, // SRem 1867 { X86::DIV16r, X86::MOV32r0, Copy, X86::AX, U }, // UDiv 1868 { X86::DIV16r, X86::MOV32r0, Copy, X86::DX, U }, // URem 1869 } 1870 }, // i16 1871 { &X86::GR32RegClass, X86::EAX, X86::EDX, { 1872 { X86::IDIV32r, X86::CDQ, Copy, X86::EAX, S }, // SDiv 1873 { X86::IDIV32r, X86::CDQ, Copy, X86::EDX, S }, // SRem 1874 { X86::DIV32r, X86::MOV32r0, Copy, X86::EAX, U }, // UDiv 1875 { X86::DIV32r, X86::MOV32r0, Copy, X86::EDX, U }, // URem 1876 } 1877 }, // i32 1878 { &X86::GR64RegClass, X86::RAX, X86::RDX, { 1879 { X86::IDIV64r, X86::CQO, Copy, X86::RAX, S }, // SDiv 1880 { X86::IDIV64r, X86::CQO, Copy, X86::RDX, S }, // SRem 1881 { X86::DIV64r, X86::MOV32r0, Copy, X86::RAX, U }, // UDiv 1882 { X86::DIV64r, X86::MOV32r0, Copy, X86::RDX, U }, // URem 1883 } 1884 }, // i64 1885 }; 1886 1887 MVT VT; 1888 if (!isTypeLegal(I->getType(), VT)) 1889 return false; 1890 1891 unsigned TypeIndex, OpIndex; 1892 switch (VT.SimpleTy) { 1893 default: return false; 1894 case MVT::i8: TypeIndex = 0; break; 1895 case MVT::i16: TypeIndex = 1; break; 1896 case MVT::i32: TypeIndex = 2; break; 1897 case MVT::i64: TypeIndex = 3; 1898 if (!Subtarget->is64Bit()) 1899 return false; 1900 break; 1901 } 1902 1903 switch (I->getOpcode()) { 1904 default: llvm_unreachable("Unexpected div/rem opcode"); 1905 case Instruction::SDiv: OpIndex = 0; break; 1906 case Instruction::SRem: OpIndex = 1; break; 1907 case Instruction::UDiv: OpIndex = 2; break; 1908 case Instruction::URem: OpIndex = 3; break; 1909 } 1910 1911 const DivRemEntry &TypeEntry = OpTable[TypeIndex]; 1912 const DivRemEntry::DivRemResult &OpEntry = TypeEntry.ResultTable[OpIndex]; 1913 unsigned Op0Reg = getRegForValue(I->getOperand(0)); 1914 if (Op0Reg == 0) 1915 return false; 1916 unsigned Op1Reg = getRegForValue(I->getOperand(1)); 1917 if (Op1Reg == 0) 1918 return false; 1919 1920 // Move op0 into low-order input register. 1921 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1922 TII.get(OpEntry.OpCopy), TypeEntry.LowInReg).addReg(Op0Reg); 1923 // Zero-extend or sign-extend into high-order input register. 1924 if (OpEntry.OpSignExtend) { 1925 if (OpEntry.IsOpSigned) 1926 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1927 TII.get(OpEntry.OpSignExtend)); 1928 else { 1929 unsigned Zero32 = createResultReg(&X86::GR32RegClass); 1930 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1931 TII.get(X86::MOV32r0), Zero32); 1932 1933 // Copy the zero into the appropriate sub/super/identical physical 1934 // register. Unfortunately the operations needed are not uniform enough 1935 // to fit neatly into the table above. 1936 if (VT == MVT::i16) { 1937 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1938 TII.get(Copy), TypeEntry.HighInReg) 1939 .addReg(Zero32, 0, X86::sub_16bit); 1940 } else if (VT == MVT::i32) { 1941 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1942 TII.get(Copy), TypeEntry.HighInReg) 1943 .addReg(Zero32); 1944 } else if (VT == MVT::i64) { 1945 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1946 TII.get(TargetOpcode::SUBREG_TO_REG), TypeEntry.HighInReg) 1947 .addImm(0).addReg(Zero32).addImm(X86::sub_32bit); 1948 } 1949 } 1950 } 1951 // Generate the DIV/IDIV instruction. 1952 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1953 TII.get(OpEntry.OpDivRem)).addReg(Op1Reg); 1954 // For i8 remainder, we can't reference AH directly, as we'll end 1955 // up with bogus copies like %R9B = COPY %AH. Reference AX 1956 // instead to prevent AH references in a REX instruction. 1957 // 1958 // The current assumption of the fast register allocator is that isel 1959 // won't generate explicit references to the GPR8_NOREX registers. If 1960 // the allocator and/or the backend get enhanced to be more robust in 1961 // that regard, this can be, and should be, removed. 1962 unsigned ResultReg = 0; 1963 if ((I->getOpcode() == Instruction::SRem || 1964 I->getOpcode() == Instruction::URem) && 1965 OpEntry.DivRemResultReg == X86::AH && Subtarget->is64Bit()) { 1966 unsigned SourceSuperReg = createResultReg(&X86::GR16RegClass); 1967 unsigned ResultSuperReg = createResultReg(&X86::GR16RegClass); 1968 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1969 TII.get(Copy), SourceSuperReg).addReg(X86::AX); 1970 1971 // Shift AX right by 8 bits instead of using AH. 1972 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::SHR16ri), 1973 ResultSuperReg).addReg(SourceSuperReg).addImm(8); 1974 1975 // Now reference the 8-bit subreg of the result. 1976 ResultReg = fastEmitInst_extractsubreg(MVT::i8, ResultSuperReg, 1977 /*Kill=*/true, X86::sub_8bit); 1978 } 1979 // Copy the result out of the physreg if we haven't already. 1980 if (!ResultReg) { 1981 ResultReg = createResultReg(TypeEntry.RC); 1982 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Copy), ResultReg) 1983 .addReg(OpEntry.DivRemResultReg); 1984 } 1985 updateValueMap(I, ResultReg); 1986 1987 return true; 1988 } 1989 1990 /// \brief Emit a conditional move instruction (if the are supported) to lower 1991 /// the select. 1992 bool X86FastISel::X86FastEmitCMoveSelect(MVT RetVT, const Instruction *I) { 1993 // Check if the subtarget supports these instructions. 1994 if (!Subtarget->hasCMov()) 1995 return false; 1996 1997 // FIXME: Add support for i8. 1998 if (RetVT < MVT::i16 || RetVT > MVT::i64) 1999 return false; 2000 2001 const Value *Cond = I->getOperand(0); 2002 const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT); 2003 bool NeedTest = true; 2004 X86::CondCode CC = X86::COND_NE; 2005 2006 // Optimize conditions coming from a compare if both instructions are in the 2007 // same basic block (values defined in other basic blocks may not have 2008 // initialized registers). 2009 const auto *CI = dyn_cast<CmpInst>(Cond); 2010 if (CI && (CI->getParent() == I->getParent())) { 2011 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI); 2012 2013 // FCMP_OEQ and FCMP_UNE cannot be checked with a single instruction. 2014 static const uint16_t SETFOpcTable[2][3] = { 2015 { X86::SETNPr, X86::SETEr , X86::TEST8rr }, 2016 { X86::SETPr, X86::SETNEr, X86::OR8rr } 2017 }; 2018 const uint16_t *SETFOpc = nullptr; 2019 switch (Predicate) { 2020 default: break; 2021 case CmpInst::FCMP_OEQ: 2022 SETFOpc = &SETFOpcTable[0][0]; 2023 Predicate = CmpInst::ICMP_NE; 2024 break; 2025 case CmpInst::FCMP_UNE: 2026 SETFOpc = &SETFOpcTable[1][0]; 2027 Predicate = CmpInst::ICMP_NE; 2028 break; 2029 } 2030 2031 bool NeedSwap; 2032 std::tie(CC, NeedSwap) = getX86ConditionCode(Predicate); 2033 assert(CC <= X86::LAST_VALID_COND && "Unexpected condition code."); 2034 2035 const Value *CmpLHS = CI->getOperand(0); 2036 const Value *CmpRHS = CI->getOperand(1); 2037 if (NeedSwap) 2038 std::swap(CmpLHS, CmpRHS); 2039 2040 EVT CmpVT = TLI.getValueType(DL, CmpLHS->getType()); 2041 // Emit a compare of the LHS and RHS, setting the flags. 2042 if (!X86FastEmitCompare(CmpLHS, CmpRHS, CmpVT, CI->getDebugLoc())) 2043 return false; 2044 2045 if (SETFOpc) { 2046 unsigned FlagReg1 = createResultReg(&X86::GR8RegClass); 2047 unsigned FlagReg2 = createResultReg(&X86::GR8RegClass); 2048 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[0]), 2049 FlagReg1); 2050 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(SETFOpc[1]), 2051 FlagReg2); 2052 auto const &II = TII.get(SETFOpc[2]); 2053 if (II.getNumDefs()) { 2054 unsigned TmpReg = createResultReg(&X86::GR8RegClass); 2055 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, TmpReg) 2056 .addReg(FlagReg2).addReg(FlagReg1); 2057 } else { 2058 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 2059 .addReg(FlagReg2).addReg(FlagReg1); 2060 } 2061 } 2062 NeedTest = false; 2063 } else if (foldX86XALUIntrinsic(CC, I, Cond)) { 2064 // Fake request the condition, otherwise the intrinsic might be completely 2065 // optimized away. 2066 unsigned TmpReg = getRegForValue(Cond); 2067 if (TmpReg == 0) 2068 return false; 2069 2070 NeedTest = false; 2071 } 2072 2073 if (NeedTest) { 2074 // Selects operate on i1, however, CondReg is 8 bits width and may contain 2075 // garbage. Indeed, only the less significant bit is supposed to be 2076 // accurate. If we read more than the lsb, we may see non-zero values 2077 // whereas lsb is zero. Therefore, we have to truncate Op0Reg to i1 for 2078 // the select. This is achieved by performing TEST against 1. 2079 unsigned CondReg = getRegForValue(Cond); 2080 if (CondReg == 0) 2081 return false; 2082 bool CondIsKill = hasTrivialKill(Cond); 2083 2084 // In case OpReg is a K register, COPY to a GPR 2085 if (MRI.getRegClass(CondReg) == &X86::VK1RegClass) { 2086 unsigned KCondReg = CondReg; 2087 CondReg = createResultReg(&X86::GR8RegClass); 2088 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2089 TII.get(TargetOpcode::COPY), CondReg) 2090 .addReg(KCondReg, getKillRegState(CondIsKill)); 2091 } 2092 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TEST8ri)) 2093 .addReg(CondReg, getKillRegState(CondIsKill)) 2094 .addImm(1); 2095 } 2096 2097 const Value *LHS = I->getOperand(1); 2098 const Value *RHS = I->getOperand(2); 2099 2100 unsigned RHSReg = getRegForValue(RHS); 2101 bool RHSIsKill = hasTrivialKill(RHS); 2102 2103 unsigned LHSReg = getRegForValue(LHS); 2104 bool LHSIsKill = hasTrivialKill(LHS); 2105 2106 if (!LHSReg || !RHSReg) 2107 return false; 2108 2109 unsigned Opc = X86::getCMovFromCond(CC, RC->getSize()); 2110 unsigned ResultReg = fastEmitInst_rr(Opc, RC, RHSReg, RHSIsKill, 2111 LHSReg, LHSIsKill); 2112 updateValueMap(I, ResultReg); 2113 return true; 2114 } 2115 2116 /// \brief Emit SSE or AVX instructions to lower the select. 2117 /// 2118 /// Try to use SSE1/SSE2 instructions to simulate a select without branches. 2119 /// This lowers fp selects into a CMP/AND/ANDN/OR sequence when the necessary 2120 /// SSE instructions are available. If AVX is available, try to use a VBLENDV. 2121 bool X86FastISel::X86FastEmitSSESelect(MVT RetVT, const Instruction *I) { 2122 // Optimize conditions coming from a compare if both instructions are in the 2123 // same basic block (values defined in other basic blocks may not have 2124 // initialized registers). 2125 const auto *CI = dyn_cast<FCmpInst>(I->getOperand(0)); 2126 if (!CI || (CI->getParent() != I->getParent())) 2127 return false; 2128 2129 if (I->getType() != CI->getOperand(0)->getType() || 2130 !((Subtarget->hasSSE1() && RetVT == MVT::f32) || 2131 (Subtarget->hasSSE2() && RetVT == MVT::f64))) 2132 return false; 2133 2134 const Value *CmpLHS = CI->getOperand(0); 2135 const Value *CmpRHS = CI->getOperand(1); 2136 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI); 2137 2138 // The optimizer might have replaced fcmp oeq %x, %x with fcmp ord %x, 0.0. 2139 // We don't have to materialize a zero constant for this case and can just use 2140 // %x again on the RHS. 2141 if (Predicate == CmpInst::FCMP_ORD || Predicate == CmpInst::FCMP_UNO) { 2142 const auto *CmpRHSC = dyn_cast<ConstantFP>(CmpRHS); 2143 if (CmpRHSC && CmpRHSC->isNullValue()) 2144 CmpRHS = CmpLHS; 2145 } 2146 2147 unsigned CC; 2148 bool NeedSwap; 2149 std::tie(CC, NeedSwap) = getX86SSEConditionCode(Predicate); 2150 if (CC > 7) 2151 return false; 2152 2153 if (NeedSwap) 2154 std::swap(CmpLHS, CmpRHS); 2155 2156 // Choose the SSE instruction sequence based on data type (float or double). 2157 static const uint16_t OpcTable[2][4] = { 2158 { X86::CMPSSrr, X86::ANDPSrr, X86::ANDNPSrr, X86::ORPSrr }, 2159 { X86::CMPSDrr, X86::ANDPDrr, X86::ANDNPDrr, X86::ORPDrr } 2160 }; 2161 2162 const uint16_t *Opc = nullptr; 2163 switch (RetVT.SimpleTy) { 2164 default: return false; 2165 case MVT::f32: Opc = &OpcTable[0][0]; break; 2166 case MVT::f64: Opc = &OpcTable[1][0]; break; 2167 } 2168 2169 const Value *LHS = I->getOperand(1); 2170 const Value *RHS = I->getOperand(2); 2171 2172 unsigned LHSReg = getRegForValue(LHS); 2173 bool LHSIsKill = hasTrivialKill(LHS); 2174 2175 unsigned RHSReg = getRegForValue(RHS); 2176 bool RHSIsKill = hasTrivialKill(RHS); 2177 2178 unsigned CmpLHSReg = getRegForValue(CmpLHS); 2179 bool CmpLHSIsKill = hasTrivialKill(CmpLHS); 2180 2181 unsigned CmpRHSReg = getRegForValue(CmpRHS); 2182 bool CmpRHSIsKill = hasTrivialKill(CmpRHS); 2183 2184 if (!LHSReg || !RHSReg || !CmpLHS || !CmpRHS) 2185 return false; 2186 2187 const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT); 2188 unsigned ResultReg; 2189 2190 if (Subtarget->hasAVX512()) { 2191 // If we have AVX512 we can use a mask compare and masked movss/sd. 2192 const TargetRegisterClass *VR128X = &X86::VR128XRegClass; 2193 const TargetRegisterClass *VK1 = &X86::VK1RegClass; 2194 2195 unsigned CmpOpcode = 2196 (RetVT == MVT::f32) ? X86::VCMPSSZrr : X86::VCMPSDZrr; 2197 unsigned CmpReg = fastEmitInst_rri(CmpOpcode, VK1, CmpLHSReg, CmpLHSIsKill, 2198 CmpRHSReg, CmpRHSIsKill, CC); 2199 2200 // Need an IMPLICIT_DEF for the input that is used to generate the upper 2201 // bits of the result register since its not based on any of the inputs. 2202 unsigned ImplicitDefReg = createResultReg(VR128X); 2203 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2204 TII.get(TargetOpcode::IMPLICIT_DEF), ImplicitDefReg); 2205 2206 // Place RHSReg is the passthru of the masked movss/sd operation and put 2207 // LHS in the input. The mask input comes from the compare. 2208 unsigned MovOpcode = 2209 (RetVT == MVT::f32) ? X86::VMOVSSZrrk : X86::VMOVSDZrrk; 2210 unsigned MovReg = fastEmitInst_rrrr(MovOpcode, VR128X, RHSReg, RHSIsKill, 2211 CmpReg, true, ImplicitDefReg, true, 2212 LHSReg, LHSIsKill); 2213 2214 ResultReg = createResultReg(RC); 2215 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2216 TII.get(TargetOpcode::COPY), ResultReg).addReg(MovReg); 2217 2218 } else if (Subtarget->hasAVX()) { 2219 const TargetRegisterClass *VR128 = &X86::VR128RegClass; 2220 2221 // If we have AVX, create 1 blendv instead of 3 logic instructions. 2222 // Blendv was introduced with SSE 4.1, but the 2 register form implicitly 2223 // uses XMM0 as the selection register. That may need just as many 2224 // instructions as the AND/ANDN/OR sequence due to register moves, so 2225 // don't bother. 2226 unsigned CmpOpcode = 2227 (RetVT == MVT::f32) ? X86::VCMPSSrr : X86::VCMPSDrr; 2228 unsigned BlendOpcode = 2229 (RetVT == MVT::f32) ? X86::VBLENDVPSrr : X86::VBLENDVPDrr; 2230 2231 unsigned CmpReg = fastEmitInst_rri(CmpOpcode, RC, CmpLHSReg, CmpLHSIsKill, 2232 CmpRHSReg, CmpRHSIsKill, CC); 2233 unsigned VBlendReg = fastEmitInst_rrr(BlendOpcode, VR128, RHSReg, RHSIsKill, 2234 LHSReg, LHSIsKill, CmpReg, true); 2235 ResultReg = createResultReg(RC); 2236 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2237 TII.get(TargetOpcode::COPY), ResultReg).addReg(VBlendReg); 2238 } else { 2239 const TargetRegisterClass *VR128 = &X86::VR128RegClass; 2240 unsigned CmpReg = fastEmitInst_rri(Opc[0], RC, CmpLHSReg, CmpLHSIsKill, 2241 CmpRHSReg, CmpRHSIsKill, CC); 2242 unsigned AndReg = fastEmitInst_rr(Opc[1], VR128, CmpReg, /*IsKill=*/false, 2243 LHSReg, LHSIsKill); 2244 unsigned AndNReg = fastEmitInst_rr(Opc[2], VR128, CmpReg, /*IsKill=*/true, 2245 RHSReg, RHSIsKill); 2246 unsigned OrReg = fastEmitInst_rr(Opc[3], VR128, AndNReg, /*IsKill=*/true, 2247 AndReg, /*IsKill=*/true); 2248 ResultReg = createResultReg(RC); 2249 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2250 TII.get(TargetOpcode::COPY), ResultReg).addReg(OrReg); 2251 } 2252 updateValueMap(I, ResultReg); 2253 return true; 2254 } 2255 2256 bool X86FastISel::X86FastEmitPseudoSelect(MVT RetVT, const Instruction *I) { 2257 // These are pseudo CMOV instructions and will be later expanded into control- 2258 // flow. 2259 unsigned Opc; 2260 switch (RetVT.SimpleTy) { 2261 default: return false; 2262 case MVT::i8: Opc = X86::CMOV_GR8; break; 2263 case MVT::i16: Opc = X86::CMOV_GR16; break; 2264 case MVT::i32: Opc = X86::CMOV_GR32; break; 2265 case MVT::f32: Opc = X86::CMOV_FR32; break; 2266 case MVT::f64: Opc = X86::CMOV_FR64; break; 2267 } 2268 2269 const Value *Cond = I->getOperand(0); 2270 X86::CondCode CC = X86::COND_NE; 2271 2272 // Optimize conditions coming from a compare if both instructions are in the 2273 // same basic block (values defined in other basic blocks may not have 2274 // initialized registers). 2275 const auto *CI = dyn_cast<CmpInst>(Cond); 2276 if (CI && (CI->getParent() == I->getParent())) { 2277 bool NeedSwap; 2278 std::tie(CC, NeedSwap) = getX86ConditionCode(CI->getPredicate()); 2279 if (CC > X86::LAST_VALID_COND) 2280 return false; 2281 2282 const Value *CmpLHS = CI->getOperand(0); 2283 const Value *CmpRHS = CI->getOperand(1); 2284 2285 if (NeedSwap) 2286 std::swap(CmpLHS, CmpRHS); 2287 2288 EVT CmpVT = TLI.getValueType(DL, CmpLHS->getType()); 2289 if (!X86FastEmitCompare(CmpLHS, CmpRHS, CmpVT, CI->getDebugLoc())) 2290 return false; 2291 } else { 2292 unsigned CondReg = getRegForValue(Cond); 2293 if (CondReg == 0) 2294 return false; 2295 bool CondIsKill = hasTrivialKill(Cond); 2296 2297 // In case OpReg is a K register, COPY to a GPR 2298 if (MRI.getRegClass(CondReg) == &X86::VK1RegClass) { 2299 unsigned KCondReg = CondReg; 2300 CondReg = createResultReg(&X86::GR8RegClass); 2301 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2302 TII.get(TargetOpcode::COPY), CondReg) 2303 .addReg(KCondReg, getKillRegState(CondIsKill)); 2304 } 2305 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TEST8ri)) 2306 .addReg(CondReg, getKillRegState(CondIsKill)) 2307 .addImm(1); 2308 } 2309 2310 const Value *LHS = I->getOperand(1); 2311 const Value *RHS = I->getOperand(2); 2312 2313 unsigned LHSReg = getRegForValue(LHS); 2314 bool LHSIsKill = hasTrivialKill(LHS); 2315 2316 unsigned RHSReg = getRegForValue(RHS); 2317 bool RHSIsKill = hasTrivialKill(RHS); 2318 2319 if (!LHSReg || !RHSReg) 2320 return false; 2321 2322 const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT); 2323 2324 unsigned ResultReg = 2325 fastEmitInst_rri(Opc, RC, RHSReg, RHSIsKill, LHSReg, LHSIsKill, CC); 2326 updateValueMap(I, ResultReg); 2327 return true; 2328 } 2329 2330 bool X86FastISel::X86SelectSelect(const Instruction *I) { 2331 MVT RetVT; 2332 if (!isTypeLegal(I->getType(), RetVT)) 2333 return false; 2334 2335 // Check if we can fold the select. 2336 if (const auto *CI = dyn_cast<CmpInst>(I->getOperand(0))) { 2337 CmpInst::Predicate Predicate = optimizeCmpPredicate(CI); 2338 const Value *Opnd = nullptr; 2339 switch (Predicate) { 2340 default: break; 2341 case CmpInst::FCMP_FALSE: Opnd = I->getOperand(2); break; 2342 case CmpInst::FCMP_TRUE: Opnd = I->getOperand(1); break; 2343 } 2344 // No need for a select anymore - this is an unconditional move. 2345 if (Opnd) { 2346 unsigned OpReg = getRegForValue(Opnd); 2347 if (OpReg == 0) 2348 return false; 2349 bool OpIsKill = hasTrivialKill(Opnd); 2350 const TargetRegisterClass *RC = TLI.getRegClassFor(RetVT); 2351 unsigned ResultReg = createResultReg(RC); 2352 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2353 TII.get(TargetOpcode::COPY), ResultReg) 2354 .addReg(OpReg, getKillRegState(OpIsKill)); 2355 updateValueMap(I, ResultReg); 2356 return true; 2357 } 2358 } 2359 2360 // First try to use real conditional move instructions. 2361 if (X86FastEmitCMoveSelect(RetVT, I)) 2362 return true; 2363 2364 // Try to use a sequence of SSE instructions to simulate a conditional move. 2365 if (X86FastEmitSSESelect(RetVT, I)) 2366 return true; 2367 2368 // Fall-back to pseudo conditional move instructions, which will be later 2369 // converted to control-flow. 2370 if (X86FastEmitPseudoSelect(RetVT, I)) 2371 return true; 2372 2373 return false; 2374 } 2375 2376 bool X86FastISel::X86SelectSIToFP(const Instruction *I) { 2377 // The target-independent selection algorithm in FastISel already knows how 2378 // to select a SINT_TO_FP if the target is SSE but not AVX. 2379 // Early exit if the subtarget doesn't have AVX. 2380 if (!Subtarget->hasAVX()) 2381 return false; 2382 2383 if (!I->getOperand(0)->getType()->isIntegerTy(32)) 2384 return false; 2385 2386 // Select integer to float/double conversion. 2387 unsigned OpReg = getRegForValue(I->getOperand(0)); 2388 if (OpReg == 0) 2389 return false; 2390 2391 const TargetRegisterClass *RC = nullptr; 2392 unsigned Opcode; 2393 2394 if (I->getType()->isDoubleTy()) { 2395 // sitofp int -> double 2396 Opcode = X86::VCVTSI2SDrr; 2397 RC = &X86::FR64RegClass; 2398 } else if (I->getType()->isFloatTy()) { 2399 // sitofp int -> float 2400 Opcode = X86::VCVTSI2SSrr; 2401 RC = &X86::FR32RegClass; 2402 } else 2403 return false; 2404 2405 unsigned ImplicitDefReg = createResultReg(RC); 2406 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2407 TII.get(TargetOpcode::IMPLICIT_DEF), ImplicitDefReg); 2408 unsigned ResultReg = 2409 fastEmitInst_rr(Opcode, RC, ImplicitDefReg, true, OpReg, false); 2410 updateValueMap(I, ResultReg); 2411 return true; 2412 } 2413 2414 // Helper method used by X86SelectFPExt and X86SelectFPTrunc. 2415 bool X86FastISel::X86SelectFPExtOrFPTrunc(const Instruction *I, 2416 unsigned TargetOpc, 2417 const TargetRegisterClass *RC) { 2418 assert((I->getOpcode() == Instruction::FPExt || 2419 I->getOpcode() == Instruction::FPTrunc) && 2420 "Instruction must be an FPExt or FPTrunc!"); 2421 2422 unsigned OpReg = getRegForValue(I->getOperand(0)); 2423 if (OpReg == 0) 2424 return false; 2425 2426 unsigned ImplicitDefReg; 2427 if (Subtarget->hasAVX()) { 2428 ImplicitDefReg = createResultReg(RC); 2429 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2430 TII.get(TargetOpcode::IMPLICIT_DEF), ImplicitDefReg); 2431 2432 } 2433 2434 unsigned ResultReg = createResultReg(RC); 2435 MachineInstrBuilder MIB; 2436 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpc), 2437 ResultReg); 2438 2439 if (Subtarget->hasAVX()) 2440 MIB.addReg(ImplicitDefReg); 2441 2442 MIB.addReg(OpReg); 2443 updateValueMap(I, ResultReg); 2444 return true; 2445 } 2446 2447 bool X86FastISel::X86SelectFPExt(const Instruction *I) { 2448 if (X86ScalarSSEf64 && I->getType()->isDoubleTy() && 2449 I->getOperand(0)->getType()->isFloatTy()) { 2450 // fpext from float to double. 2451 unsigned Opc = Subtarget->hasAVX() ? X86::VCVTSS2SDrr : X86::CVTSS2SDrr; 2452 return X86SelectFPExtOrFPTrunc(I, Opc, &X86::FR64RegClass); 2453 } 2454 2455 return false; 2456 } 2457 2458 bool X86FastISel::X86SelectFPTrunc(const Instruction *I) { 2459 if (X86ScalarSSEf64 && I->getType()->isFloatTy() && 2460 I->getOperand(0)->getType()->isDoubleTy()) { 2461 // fptrunc from double to float. 2462 unsigned Opc = Subtarget->hasAVX() ? X86::VCVTSD2SSrr : X86::CVTSD2SSrr; 2463 return X86SelectFPExtOrFPTrunc(I, Opc, &X86::FR32RegClass); 2464 } 2465 2466 return false; 2467 } 2468 2469 bool X86FastISel::X86SelectTrunc(const Instruction *I) { 2470 EVT SrcVT = TLI.getValueType(DL, I->getOperand(0)->getType()); 2471 EVT DstVT = TLI.getValueType(DL, I->getType()); 2472 2473 // This code only handles truncation to byte. 2474 if (DstVT != MVT::i8 && DstVT != MVT::i1) 2475 return false; 2476 if (!TLI.isTypeLegal(SrcVT)) 2477 return false; 2478 2479 unsigned InputReg = getRegForValue(I->getOperand(0)); 2480 if (!InputReg) 2481 // Unhandled operand. Halt "fast" selection and bail. 2482 return false; 2483 2484 if (SrcVT == MVT::i8) { 2485 // Truncate from i8 to i1; no code needed. 2486 updateValueMap(I, InputReg); 2487 return true; 2488 } 2489 2490 bool KillInputReg = false; 2491 if (!Subtarget->is64Bit()) { 2492 // If we're on x86-32; we can't extract an i8 from a general register. 2493 // First issue a copy to GR16_ABCD or GR32_ABCD. 2494 const TargetRegisterClass *CopyRC = 2495 (SrcVT == MVT::i16) ? &X86::GR16_ABCDRegClass : &X86::GR32_ABCDRegClass; 2496 unsigned CopyReg = createResultReg(CopyRC); 2497 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2498 TII.get(TargetOpcode::COPY), CopyReg).addReg(InputReg); 2499 InputReg = CopyReg; 2500 KillInputReg = true; 2501 } 2502 2503 // Issue an extract_subreg. 2504 unsigned ResultReg = fastEmitInst_extractsubreg(MVT::i8, 2505 InputReg, KillInputReg, 2506 X86::sub_8bit); 2507 if (!ResultReg) 2508 return false; 2509 2510 updateValueMap(I, ResultReg); 2511 return true; 2512 } 2513 2514 bool X86FastISel::IsMemcpySmall(uint64_t Len) { 2515 return Len <= (Subtarget->is64Bit() ? 32 : 16); 2516 } 2517 2518 bool X86FastISel::TryEmitSmallMemcpy(X86AddressMode DestAM, 2519 X86AddressMode SrcAM, uint64_t Len) { 2520 2521 // Make sure we don't bloat code by inlining very large memcpy's. 2522 if (!IsMemcpySmall(Len)) 2523 return false; 2524 2525 bool i64Legal = Subtarget->is64Bit(); 2526 2527 // We don't care about alignment here since we just emit integer accesses. 2528 while (Len) { 2529 MVT VT; 2530 if (Len >= 8 && i64Legal) 2531 VT = MVT::i64; 2532 else if (Len >= 4) 2533 VT = MVT::i32; 2534 else if (Len >= 2) 2535 VT = MVT::i16; 2536 else 2537 VT = MVT::i8; 2538 2539 unsigned Reg; 2540 bool RV = X86FastEmitLoad(VT, SrcAM, nullptr, Reg); 2541 RV &= X86FastEmitStore(VT, Reg, /*Kill=*/true, DestAM); 2542 assert(RV && "Failed to emit load or store??"); 2543 2544 unsigned Size = VT.getSizeInBits()/8; 2545 Len -= Size; 2546 DestAM.Disp += Size; 2547 SrcAM.Disp += Size; 2548 } 2549 2550 return true; 2551 } 2552 2553 bool X86FastISel::fastLowerIntrinsicCall(const IntrinsicInst *II) { 2554 // FIXME: Handle more intrinsics. 2555 switch (II->getIntrinsicID()) { 2556 default: return false; 2557 case Intrinsic::convert_from_fp16: 2558 case Intrinsic::convert_to_fp16: { 2559 if (Subtarget->useSoftFloat() || !Subtarget->hasF16C()) 2560 return false; 2561 2562 const Value *Op = II->getArgOperand(0); 2563 unsigned InputReg = getRegForValue(Op); 2564 if (InputReg == 0) 2565 return false; 2566 2567 // F16C only allows converting from float to half and from half to float. 2568 bool IsFloatToHalf = II->getIntrinsicID() == Intrinsic::convert_to_fp16; 2569 if (IsFloatToHalf) { 2570 if (!Op->getType()->isFloatTy()) 2571 return false; 2572 } else { 2573 if (!II->getType()->isFloatTy()) 2574 return false; 2575 } 2576 2577 unsigned ResultReg = 0; 2578 const TargetRegisterClass *RC = TLI.getRegClassFor(MVT::v8i16); 2579 if (IsFloatToHalf) { 2580 // 'InputReg' is implicitly promoted from register class FR32 to 2581 // register class VR128 by method 'constrainOperandRegClass' which is 2582 // directly called by 'fastEmitInst_ri'. 2583 // Instruction VCVTPS2PHrr takes an extra immediate operand which is 2584 // used to provide rounding control: use MXCSR.RC, encoded as 0b100. 2585 // It's consistent with the other FP instructions, which are usually 2586 // controlled by MXCSR. 2587 InputReg = fastEmitInst_ri(X86::VCVTPS2PHrr, RC, InputReg, false, 4); 2588 2589 // Move the lower 32-bits of ResultReg to another register of class GR32. 2590 ResultReg = createResultReg(&X86::GR32RegClass); 2591 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2592 TII.get(X86::VMOVPDI2DIrr), ResultReg) 2593 .addReg(InputReg, RegState::Kill); 2594 2595 // The result value is in the lower 16-bits of ResultReg. 2596 unsigned RegIdx = X86::sub_16bit; 2597 ResultReg = fastEmitInst_extractsubreg(MVT::i16, ResultReg, true, RegIdx); 2598 } else { 2599 assert(Op->getType()->isIntegerTy(16) && "Expected a 16-bit integer!"); 2600 // Explicitly sign-extend the input to 32-bit. 2601 InputReg = fastEmit_r(MVT::i16, MVT::i32, ISD::SIGN_EXTEND, InputReg, 2602 /*Kill=*/false); 2603 2604 // The following SCALAR_TO_VECTOR will be expanded into a VMOVDI2PDIrr. 2605 InputReg = fastEmit_r(MVT::i32, MVT::v4i32, ISD::SCALAR_TO_VECTOR, 2606 InputReg, /*Kill=*/true); 2607 2608 InputReg = fastEmitInst_r(X86::VCVTPH2PSrr, RC, InputReg, /*Kill=*/true); 2609 2610 // The result value is in the lower 32-bits of ResultReg. 2611 // Emit an explicit copy from register class VR128 to register class FR32. 2612 ResultReg = createResultReg(&X86::FR32RegClass); 2613 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2614 TII.get(TargetOpcode::COPY), ResultReg) 2615 .addReg(InputReg, RegState::Kill); 2616 } 2617 2618 updateValueMap(II, ResultReg); 2619 return true; 2620 } 2621 case Intrinsic::frameaddress: { 2622 MachineFunction *MF = FuncInfo.MF; 2623 if (MF->getTarget().getMCAsmInfo()->usesWindowsCFI()) 2624 return false; 2625 2626 Type *RetTy = II->getCalledFunction()->getReturnType(); 2627 2628 MVT VT; 2629 if (!isTypeLegal(RetTy, VT)) 2630 return false; 2631 2632 unsigned Opc; 2633 const TargetRegisterClass *RC = nullptr; 2634 2635 switch (VT.SimpleTy) { 2636 default: llvm_unreachable("Invalid result type for frameaddress."); 2637 case MVT::i32: Opc = X86::MOV32rm; RC = &X86::GR32RegClass; break; 2638 case MVT::i64: Opc = X86::MOV64rm; RC = &X86::GR64RegClass; break; 2639 } 2640 2641 // This needs to be set before we call getPtrSizedFrameRegister, otherwise 2642 // we get the wrong frame register. 2643 MachineFrameInfo &MFI = MF->getFrameInfo(); 2644 MFI.setFrameAddressIsTaken(true); 2645 2646 const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo(); 2647 unsigned FrameReg = RegInfo->getPtrSizedFrameRegister(*MF); 2648 assert(((FrameReg == X86::RBP && VT == MVT::i64) || 2649 (FrameReg == X86::EBP && VT == MVT::i32)) && 2650 "Invalid Frame Register!"); 2651 2652 // Always make a copy of the frame register to to a vreg first, so that we 2653 // never directly reference the frame register (the TwoAddressInstruction- 2654 // Pass doesn't like that). 2655 unsigned SrcReg = createResultReg(RC); 2656 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2657 TII.get(TargetOpcode::COPY), SrcReg).addReg(FrameReg); 2658 2659 // Now recursively load from the frame address. 2660 // movq (%rbp), %rax 2661 // movq (%rax), %rax 2662 // movq (%rax), %rax 2663 // ... 2664 unsigned DestReg; 2665 unsigned Depth = cast<ConstantInt>(II->getOperand(0))->getZExtValue(); 2666 while (Depth--) { 2667 DestReg = createResultReg(RC); 2668 addDirectMem(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2669 TII.get(Opc), DestReg), SrcReg); 2670 SrcReg = DestReg; 2671 } 2672 2673 updateValueMap(II, SrcReg); 2674 return true; 2675 } 2676 case Intrinsic::memcpy: { 2677 const MemCpyInst *MCI = cast<MemCpyInst>(II); 2678 // Don't handle volatile or variable length memcpys. 2679 if (MCI->isVolatile()) 2680 return false; 2681 2682 if (isa<ConstantInt>(MCI->getLength())) { 2683 // Small memcpy's are common enough that we want to do them 2684 // without a call if possible. 2685 uint64_t Len = cast<ConstantInt>(MCI->getLength())->getZExtValue(); 2686 if (IsMemcpySmall(Len)) { 2687 X86AddressMode DestAM, SrcAM; 2688 if (!X86SelectAddress(MCI->getRawDest(), DestAM) || 2689 !X86SelectAddress(MCI->getRawSource(), SrcAM)) 2690 return false; 2691 TryEmitSmallMemcpy(DestAM, SrcAM, Len); 2692 return true; 2693 } 2694 } 2695 2696 unsigned SizeWidth = Subtarget->is64Bit() ? 64 : 32; 2697 if (!MCI->getLength()->getType()->isIntegerTy(SizeWidth)) 2698 return false; 2699 2700 if (MCI->getSourceAddressSpace() > 255 || MCI->getDestAddressSpace() > 255) 2701 return false; 2702 2703 return lowerCallTo(II, "memcpy", II->getNumArgOperands() - 2); 2704 } 2705 case Intrinsic::memset: { 2706 const MemSetInst *MSI = cast<MemSetInst>(II); 2707 2708 if (MSI->isVolatile()) 2709 return false; 2710 2711 unsigned SizeWidth = Subtarget->is64Bit() ? 64 : 32; 2712 if (!MSI->getLength()->getType()->isIntegerTy(SizeWidth)) 2713 return false; 2714 2715 if (MSI->getDestAddressSpace() > 255) 2716 return false; 2717 2718 return lowerCallTo(II, "memset", II->getNumArgOperands() - 2); 2719 } 2720 case Intrinsic::stackprotector: { 2721 // Emit code to store the stack guard onto the stack. 2722 EVT PtrTy = TLI.getPointerTy(DL); 2723 2724 const Value *Op1 = II->getArgOperand(0); // The guard's value. 2725 const AllocaInst *Slot = cast<AllocaInst>(II->getArgOperand(1)); 2726 2727 MFI.setStackProtectorIndex(FuncInfo.StaticAllocaMap[Slot]); 2728 2729 // Grab the frame index. 2730 X86AddressMode AM; 2731 if (!X86SelectAddress(Slot, AM)) return false; 2732 if (!X86FastEmitStore(PtrTy, Op1, AM)) return false; 2733 return true; 2734 } 2735 case Intrinsic::dbg_declare: { 2736 const DbgDeclareInst *DI = cast<DbgDeclareInst>(II); 2737 X86AddressMode AM; 2738 assert(DI->getAddress() && "Null address should be checked earlier!"); 2739 if (!X86SelectAddress(DI->getAddress(), AM)) 2740 return false; 2741 const MCInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE); 2742 // FIXME may need to add RegState::Debug to any registers produced, 2743 // although ESP/EBP should be the only ones at the moment. 2744 assert(DI->getVariable()->isValidLocationForIntrinsic(DbgLoc) && 2745 "Expected inlined-at fields to agree"); 2746 addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II), AM) 2747 .addImm(0) 2748 .addMetadata(DI->getVariable()) 2749 .addMetadata(DI->getExpression()); 2750 return true; 2751 } 2752 case Intrinsic::trap: { 2753 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::TRAP)); 2754 return true; 2755 } 2756 case Intrinsic::sqrt: { 2757 if (!Subtarget->hasSSE1()) 2758 return false; 2759 2760 Type *RetTy = II->getCalledFunction()->getReturnType(); 2761 2762 MVT VT; 2763 if (!isTypeLegal(RetTy, VT)) 2764 return false; 2765 2766 // Unfortunately we can't use fastEmit_r, because the AVX version of FSQRT 2767 // is not generated by FastISel yet. 2768 // FIXME: Update this code once tablegen can handle it. 2769 static const uint16_t SqrtOpc[2][2] = { 2770 {X86::SQRTSSr, X86::VSQRTSSr}, 2771 {X86::SQRTSDr, X86::VSQRTSDr} 2772 }; 2773 bool HasAVX = Subtarget->hasAVX(); 2774 unsigned Opc; 2775 const TargetRegisterClass *RC; 2776 switch (VT.SimpleTy) { 2777 default: return false; 2778 case MVT::f32: Opc = SqrtOpc[0][HasAVX]; RC = &X86::FR32RegClass; break; 2779 case MVT::f64: Opc = SqrtOpc[1][HasAVX]; RC = &X86::FR64RegClass; break; 2780 } 2781 2782 const Value *SrcVal = II->getArgOperand(0); 2783 unsigned SrcReg = getRegForValue(SrcVal); 2784 2785 if (SrcReg == 0) 2786 return false; 2787 2788 unsigned ImplicitDefReg = 0; 2789 if (HasAVX) { 2790 ImplicitDefReg = createResultReg(RC); 2791 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2792 TII.get(TargetOpcode::IMPLICIT_DEF), ImplicitDefReg); 2793 } 2794 2795 unsigned ResultReg = createResultReg(RC); 2796 MachineInstrBuilder MIB; 2797 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), 2798 ResultReg); 2799 2800 if (ImplicitDefReg) 2801 MIB.addReg(ImplicitDefReg); 2802 2803 MIB.addReg(SrcReg); 2804 2805 updateValueMap(II, ResultReg); 2806 return true; 2807 } 2808 case Intrinsic::sadd_with_overflow: 2809 case Intrinsic::uadd_with_overflow: 2810 case Intrinsic::ssub_with_overflow: 2811 case Intrinsic::usub_with_overflow: 2812 case Intrinsic::smul_with_overflow: 2813 case Intrinsic::umul_with_overflow: { 2814 // This implements the basic lowering of the xalu with overflow intrinsics 2815 // into add/sub/mul followed by either seto or setb. 2816 const Function *Callee = II->getCalledFunction(); 2817 auto *Ty = cast<StructType>(Callee->getReturnType()); 2818 Type *RetTy = Ty->getTypeAtIndex(0U); 2819 assert(Ty->getTypeAtIndex(1)->isIntegerTy() && 2820 Ty->getTypeAtIndex(1)->getScalarSizeInBits() == 1 && 2821 "Overflow value expected to be an i1"); 2822 2823 MVT VT; 2824 if (!isTypeLegal(RetTy, VT)) 2825 return false; 2826 2827 if (VT < MVT::i8 || VT > MVT::i64) 2828 return false; 2829 2830 const Value *LHS = II->getArgOperand(0); 2831 const Value *RHS = II->getArgOperand(1); 2832 2833 // Canonicalize immediate to the RHS. 2834 if (isa<ConstantInt>(LHS) && !isa<ConstantInt>(RHS) && 2835 isCommutativeIntrinsic(II)) 2836 std::swap(LHS, RHS); 2837 2838 bool UseIncDec = false; 2839 if (isa<ConstantInt>(RHS) && cast<ConstantInt>(RHS)->isOne()) 2840 UseIncDec = true; 2841 2842 unsigned BaseOpc, CondOpc; 2843 switch (II->getIntrinsicID()) { 2844 default: llvm_unreachable("Unexpected intrinsic!"); 2845 case Intrinsic::sadd_with_overflow: 2846 BaseOpc = UseIncDec ? unsigned(X86ISD::INC) : unsigned(ISD::ADD); 2847 CondOpc = X86::SETOr; 2848 break; 2849 case Intrinsic::uadd_with_overflow: 2850 BaseOpc = ISD::ADD; CondOpc = X86::SETBr; break; 2851 case Intrinsic::ssub_with_overflow: 2852 BaseOpc = UseIncDec ? unsigned(X86ISD::DEC) : unsigned(ISD::SUB); 2853 CondOpc = X86::SETOr; 2854 break; 2855 case Intrinsic::usub_with_overflow: 2856 BaseOpc = ISD::SUB; CondOpc = X86::SETBr; break; 2857 case Intrinsic::smul_with_overflow: 2858 BaseOpc = X86ISD::SMUL; CondOpc = X86::SETOr; break; 2859 case Intrinsic::umul_with_overflow: 2860 BaseOpc = X86ISD::UMUL; CondOpc = X86::SETOr; break; 2861 } 2862 2863 unsigned LHSReg = getRegForValue(LHS); 2864 if (LHSReg == 0) 2865 return false; 2866 bool LHSIsKill = hasTrivialKill(LHS); 2867 2868 unsigned ResultReg = 0; 2869 // Check if we have an immediate version. 2870 if (const auto *CI = dyn_cast<ConstantInt>(RHS)) { 2871 static const uint16_t Opc[2][4] = { 2872 { X86::INC8r, X86::INC16r, X86::INC32r, X86::INC64r }, 2873 { X86::DEC8r, X86::DEC16r, X86::DEC32r, X86::DEC64r } 2874 }; 2875 2876 if (BaseOpc == X86ISD::INC || BaseOpc == X86ISD::DEC) { 2877 ResultReg = createResultReg(TLI.getRegClassFor(VT)); 2878 bool IsDec = BaseOpc == X86ISD::DEC; 2879 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2880 TII.get(Opc[IsDec][VT.SimpleTy-MVT::i8]), ResultReg) 2881 .addReg(LHSReg, getKillRegState(LHSIsKill)); 2882 } else 2883 ResultReg = fastEmit_ri(VT, VT, BaseOpc, LHSReg, LHSIsKill, 2884 CI->getZExtValue()); 2885 } 2886 2887 unsigned RHSReg; 2888 bool RHSIsKill; 2889 if (!ResultReg) { 2890 RHSReg = getRegForValue(RHS); 2891 if (RHSReg == 0) 2892 return false; 2893 RHSIsKill = hasTrivialKill(RHS); 2894 ResultReg = fastEmit_rr(VT, VT, BaseOpc, LHSReg, LHSIsKill, RHSReg, 2895 RHSIsKill); 2896 } 2897 2898 // FastISel doesn't have a pattern for all X86::MUL*r and X86::IMUL*r. Emit 2899 // it manually. 2900 if (BaseOpc == X86ISD::UMUL && !ResultReg) { 2901 static const uint16_t MULOpc[] = 2902 { X86::MUL8r, X86::MUL16r, X86::MUL32r, X86::MUL64r }; 2903 static const MCPhysReg Reg[] = { X86::AL, X86::AX, X86::EAX, X86::RAX }; 2904 // First copy the first operand into RAX, which is an implicit input to 2905 // the X86::MUL*r instruction. 2906 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2907 TII.get(TargetOpcode::COPY), Reg[VT.SimpleTy-MVT::i8]) 2908 .addReg(LHSReg, getKillRegState(LHSIsKill)); 2909 ResultReg = fastEmitInst_r(MULOpc[VT.SimpleTy-MVT::i8], 2910 TLI.getRegClassFor(VT), RHSReg, RHSIsKill); 2911 } else if (BaseOpc == X86ISD::SMUL && !ResultReg) { 2912 static const uint16_t MULOpc[] = 2913 { X86::IMUL8r, X86::IMUL16rr, X86::IMUL32rr, X86::IMUL64rr }; 2914 if (VT == MVT::i8) { 2915 // Copy the first operand into AL, which is an implicit input to the 2916 // X86::IMUL8r instruction. 2917 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 2918 TII.get(TargetOpcode::COPY), X86::AL) 2919 .addReg(LHSReg, getKillRegState(LHSIsKill)); 2920 ResultReg = fastEmitInst_r(MULOpc[0], TLI.getRegClassFor(VT), RHSReg, 2921 RHSIsKill); 2922 } else 2923 ResultReg = fastEmitInst_rr(MULOpc[VT.SimpleTy-MVT::i8], 2924 TLI.getRegClassFor(VT), LHSReg, LHSIsKill, 2925 RHSReg, RHSIsKill); 2926 } 2927 2928 if (!ResultReg) 2929 return false; 2930 2931 // Assign to a GPR since the overflow return value is lowered to a SETcc. 2932 unsigned ResultReg2 = createResultReg(&X86::GR8RegClass); 2933 assert((ResultReg+1) == ResultReg2 && "Nonconsecutive result registers."); 2934 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CondOpc), 2935 ResultReg2); 2936 2937 updateValueMap(II, ResultReg, 2); 2938 return true; 2939 } 2940 case Intrinsic::x86_sse_cvttss2si: 2941 case Intrinsic::x86_sse_cvttss2si64: 2942 case Intrinsic::x86_sse2_cvttsd2si: 2943 case Intrinsic::x86_sse2_cvttsd2si64: { 2944 bool IsInputDouble; 2945 switch (II->getIntrinsicID()) { 2946 default: llvm_unreachable("Unexpected intrinsic."); 2947 case Intrinsic::x86_sse_cvttss2si: 2948 case Intrinsic::x86_sse_cvttss2si64: 2949 if (!Subtarget->hasSSE1()) 2950 return false; 2951 IsInputDouble = false; 2952 break; 2953 case Intrinsic::x86_sse2_cvttsd2si: 2954 case Intrinsic::x86_sse2_cvttsd2si64: 2955 if (!Subtarget->hasSSE2()) 2956 return false; 2957 IsInputDouble = true; 2958 break; 2959 } 2960 2961 Type *RetTy = II->getCalledFunction()->getReturnType(); 2962 MVT VT; 2963 if (!isTypeLegal(RetTy, VT)) 2964 return false; 2965 2966 static const uint16_t CvtOpc[2][2][2] = { 2967 { { X86::CVTTSS2SIrr, X86::VCVTTSS2SIrr }, 2968 { X86::CVTTSS2SI64rr, X86::VCVTTSS2SI64rr } }, 2969 { { X86::CVTTSD2SIrr, X86::VCVTTSD2SIrr }, 2970 { X86::CVTTSD2SI64rr, X86::VCVTTSD2SI64rr } } 2971 }; 2972 bool HasAVX = Subtarget->hasAVX(); 2973 unsigned Opc; 2974 switch (VT.SimpleTy) { 2975 default: llvm_unreachable("Unexpected result type."); 2976 case MVT::i32: Opc = CvtOpc[IsInputDouble][0][HasAVX]; break; 2977 case MVT::i64: Opc = CvtOpc[IsInputDouble][1][HasAVX]; break; 2978 } 2979 2980 // Check if we can fold insertelement instructions into the convert. 2981 const Value *Op = II->getArgOperand(0); 2982 while (auto *IE = dyn_cast<InsertElementInst>(Op)) { 2983 const Value *Index = IE->getOperand(2); 2984 if (!isa<ConstantInt>(Index)) 2985 break; 2986 unsigned Idx = cast<ConstantInt>(Index)->getZExtValue(); 2987 2988 if (Idx == 0) { 2989 Op = IE->getOperand(1); 2990 break; 2991 } 2992 Op = IE->getOperand(0); 2993 } 2994 2995 unsigned Reg = getRegForValue(Op); 2996 if (Reg == 0) 2997 return false; 2998 2999 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT)); 3000 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg) 3001 .addReg(Reg); 3002 3003 updateValueMap(II, ResultReg); 3004 return true; 3005 } 3006 } 3007 } 3008 3009 bool X86FastISel::fastLowerArguments() { 3010 if (!FuncInfo.CanLowerReturn) 3011 return false; 3012 3013 const Function *F = FuncInfo.Fn; 3014 if (F->isVarArg()) 3015 return false; 3016 3017 CallingConv::ID CC = F->getCallingConv(); 3018 if (CC != CallingConv::C) 3019 return false; 3020 3021 if (Subtarget->isCallingConvWin64(CC)) 3022 return false; 3023 3024 if (!Subtarget->is64Bit()) 3025 return false; 3026 3027 // Only handle simple cases. i.e. Up to 6 i32/i64 scalar arguments. 3028 unsigned GPRCnt = 0; 3029 unsigned FPRCnt = 0; 3030 unsigned Idx = 0; 3031 for (auto const &Arg : F->args()) { 3032 // The first argument is at index 1. 3033 ++Idx; 3034 if (F->getAttributes().hasAttribute(Idx, Attribute::ByVal) || 3035 F->getAttributes().hasAttribute(Idx, Attribute::InReg) || 3036 F->getAttributes().hasAttribute(Idx, Attribute::StructRet) || 3037 F->getAttributes().hasAttribute(Idx, Attribute::SwiftSelf) || 3038 F->getAttributes().hasAttribute(Idx, Attribute::SwiftError) || 3039 F->getAttributes().hasAttribute(Idx, Attribute::Nest)) 3040 return false; 3041 3042 Type *ArgTy = Arg.getType(); 3043 if (ArgTy->isStructTy() || ArgTy->isArrayTy() || ArgTy->isVectorTy()) 3044 return false; 3045 3046 EVT ArgVT = TLI.getValueType(DL, ArgTy); 3047 if (!ArgVT.isSimple()) return false; 3048 switch (ArgVT.getSimpleVT().SimpleTy) { 3049 default: return false; 3050 case MVT::i32: 3051 case MVT::i64: 3052 ++GPRCnt; 3053 break; 3054 case MVT::f32: 3055 case MVT::f64: 3056 if (!Subtarget->hasSSE1()) 3057 return false; 3058 ++FPRCnt; 3059 break; 3060 } 3061 3062 if (GPRCnt > 6) 3063 return false; 3064 3065 if (FPRCnt > 8) 3066 return false; 3067 } 3068 3069 static const MCPhysReg GPR32ArgRegs[] = { 3070 X86::EDI, X86::ESI, X86::EDX, X86::ECX, X86::R8D, X86::R9D 3071 }; 3072 static const MCPhysReg GPR64ArgRegs[] = { 3073 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8 , X86::R9 3074 }; 3075 static const MCPhysReg XMMArgRegs[] = { 3076 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3, 3077 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7 3078 }; 3079 3080 unsigned GPRIdx = 0; 3081 unsigned FPRIdx = 0; 3082 for (auto const &Arg : F->args()) { 3083 MVT VT = TLI.getSimpleValueType(DL, Arg.getType()); 3084 const TargetRegisterClass *RC = TLI.getRegClassFor(VT); 3085 unsigned SrcReg; 3086 switch (VT.SimpleTy) { 3087 default: llvm_unreachable("Unexpected value type."); 3088 case MVT::i32: SrcReg = GPR32ArgRegs[GPRIdx++]; break; 3089 case MVT::i64: SrcReg = GPR64ArgRegs[GPRIdx++]; break; 3090 case MVT::f32: LLVM_FALLTHROUGH; 3091 case MVT::f64: SrcReg = XMMArgRegs[FPRIdx++]; break; 3092 } 3093 unsigned DstReg = FuncInfo.MF->addLiveIn(SrcReg, RC); 3094 // FIXME: Unfortunately it's necessary to emit a copy from the livein copy. 3095 // Without this, EmitLiveInCopies may eliminate the livein if its only 3096 // use is a bitcast (which isn't turned into an instruction). 3097 unsigned ResultReg = createResultReg(RC); 3098 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3099 TII.get(TargetOpcode::COPY), ResultReg) 3100 .addReg(DstReg, getKillRegState(true)); 3101 updateValueMap(&Arg, ResultReg); 3102 } 3103 return true; 3104 } 3105 3106 static unsigned computeBytesPoppedByCalleeForSRet(const X86Subtarget *Subtarget, 3107 CallingConv::ID CC, 3108 ImmutableCallSite *CS) { 3109 if (Subtarget->is64Bit()) 3110 return 0; 3111 if (Subtarget->getTargetTriple().isOSMSVCRT()) 3112 return 0; 3113 if (CC == CallingConv::Fast || CC == CallingConv::GHC || 3114 CC == CallingConv::HiPE) 3115 return 0; 3116 3117 if (CS) 3118 if (CS->arg_empty() || !CS->paramHasAttr(1, Attribute::StructRet) || 3119 CS->paramHasAttr(1, Attribute::InReg) || Subtarget->isTargetMCU()) 3120 return 0; 3121 3122 return 4; 3123 } 3124 3125 bool X86FastISel::fastLowerCall(CallLoweringInfo &CLI) { 3126 auto &OutVals = CLI.OutVals; 3127 auto &OutFlags = CLI.OutFlags; 3128 auto &OutRegs = CLI.OutRegs; 3129 auto &Ins = CLI.Ins; 3130 auto &InRegs = CLI.InRegs; 3131 CallingConv::ID CC = CLI.CallConv; 3132 bool &IsTailCall = CLI.IsTailCall; 3133 bool IsVarArg = CLI.IsVarArg; 3134 const Value *Callee = CLI.Callee; 3135 MCSymbol *Symbol = CLI.Symbol; 3136 3137 bool Is64Bit = Subtarget->is64Bit(); 3138 bool IsWin64 = Subtarget->isCallingConvWin64(CC); 3139 3140 // Handle only C, fastcc, and webkit_js calling conventions for now. 3141 switch (CC) { 3142 default: return false; 3143 case CallingConv::C: 3144 case CallingConv::Fast: 3145 case CallingConv::WebKit_JS: 3146 case CallingConv::Swift: 3147 case CallingConv::X86_FastCall: 3148 case CallingConv::X86_StdCall: 3149 case CallingConv::X86_ThisCall: 3150 case CallingConv::X86_64_Win64: 3151 case CallingConv::X86_64_SysV: 3152 break; 3153 } 3154 3155 // Allow SelectionDAG isel to handle tail calls. 3156 if (IsTailCall) 3157 return false; 3158 3159 // fastcc with -tailcallopt is intended to provide a guaranteed 3160 // tail call optimization. Fastisel doesn't know how to do that. 3161 if (CC == CallingConv::Fast && TM.Options.GuaranteedTailCallOpt) 3162 return false; 3163 3164 // Don't know how to handle Win64 varargs yet. Nothing special needed for 3165 // x86-32. Special handling for x86-64 is implemented. 3166 if (IsVarArg && IsWin64) 3167 return false; 3168 3169 // Don't know about inalloca yet. 3170 if (CLI.CS && CLI.CS->hasInAllocaArgument()) 3171 return false; 3172 3173 for (auto Flag : CLI.OutFlags) 3174 if (Flag.isSwiftError()) 3175 return false; 3176 3177 SmallVector<MVT, 16> OutVTs; 3178 SmallVector<unsigned, 16> ArgRegs; 3179 3180 // If this is a constant i1/i8/i16 argument, promote to i32 to avoid an extra 3181 // instruction. This is safe because it is common to all FastISel supported 3182 // calling conventions on x86. 3183 for (int i = 0, e = OutVals.size(); i != e; ++i) { 3184 Value *&Val = OutVals[i]; 3185 ISD::ArgFlagsTy Flags = OutFlags[i]; 3186 if (auto *CI = dyn_cast<ConstantInt>(Val)) { 3187 if (CI->getBitWidth() < 32) { 3188 if (Flags.isSExt()) 3189 Val = ConstantExpr::getSExt(CI, Type::getInt32Ty(CI->getContext())); 3190 else 3191 Val = ConstantExpr::getZExt(CI, Type::getInt32Ty(CI->getContext())); 3192 } 3193 } 3194 3195 // Passing bools around ends up doing a trunc to i1 and passing it. 3196 // Codegen this as an argument + "and 1". 3197 MVT VT; 3198 auto *TI = dyn_cast<TruncInst>(Val); 3199 unsigned ResultReg; 3200 if (TI && TI->getType()->isIntegerTy(1) && CLI.CS && 3201 (TI->getParent() == CLI.CS->getInstruction()->getParent()) && 3202 TI->hasOneUse()) { 3203 Value *PrevVal = TI->getOperand(0); 3204 ResultReg = getRegForValue(PrevVal); 3205 3206 if (!ResultReg) 3207 return false; 3208 3209 if (!isTypeLegal(PrevVal->getType(), VT)) 3210 return false; 3211 3212 ResultReg = 3213 fastEmit_ri(VT, VT, ISD::AND, ResultReg, hasTrivialKill(PrevVal), 1); 3214 } else { 3215 if (!isTypeLegal(Val->getType(), VT)) 3216 return false; 3217 ResultReg = getRegForValue(Val); 3218 } 3219 3220 if (!ResultReg) 3221 return false; 3222 3223 ArgRegs.push_back(ResultReg); 3224 OutVTs.push_back(VT); 3225 } 3226 3227 // Analyze operands of the call, assigning locations to each operand. 3228 SmallVector<CCValAssign, 16> ArgLocs; 3229 CCState CCInfo(CC, IsVarArg, *FuncInfo.MF, ArgLocs, CLI.RetTy->getContext()); 3230 3231 // Allocate shadow area for Win64 3232 if (IsWin64) 3233 CCInfo.AllocateStack(32, 8); 3234 3235 CCInfo.AnalyzeCallOperands(OutVTs, OutFlags, CC_X86); 3236 3237 // Get a count of how many bytes are to be pushed on the stack. 3238 unsigned NumBytes = CCInfo.getAlignedCallFrameSize(); 3239 3240 // Issue CALLSEQ_START 3241 unsigned AdjStackDown = TII.getCallFrameSetupOpcode(); 3242 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackDown)) 3243 .addImm(NumBytes).addImm(0); 3244 3245 // Walk the register/memloc assignments, inserting copies/loads. 3246 const X86RegisterInfo *RegInfo = Subtarget->getRegisterInfo(); 3247 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { 3248 CCValAssign const &VA = ArgLocs[i]; 3249 const Value *ArgVal = OutVals[VA.getValNo()]; 3250 MVT ArgVT = OutVTs[VA.getValNo()]; 3251 3252 if (ArgVT == MVT::x86mmx) 3253 return false; 3254 3255 unsigned ArgReg = ArgRegs[VA.getValNo()]; 3256 3257 // Promote the value if needed. 3258 switch (VA.getLocInfo()) { 3259 case CCValAssign::Full: break; 3260 case CCValAssign::SExt: { 3261 assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() && 3262 "Unexpected extend"); 3263 3264 if (ArgVT == MVT::i1) 3265 return false; 3266 3267 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), ArgReg, 3268 ArgVT, ArgReg); 3269 assert(Emitted && "Failed to emit a sext!"); (void)Emitted; 3270 ArgVT = VA.getLocVT(); 3271 break; 3272 } 3273 case CCValAssign::ZExt: { 3274 assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() && 3275 "Unexpected extend"); 3276 3277 // Handle zero-extension from i1 to i8, which is common. 3278 if (ArgVT == MVT::i1) { 3279 // Set the high bits to zero. 3280 ArgReg = fastEmitZExtFromI1(MVT::i8, ArgReg, /*TODO: Kill=*/false); 3281 ArgVT = MVT::i8; 3282 3283 if (ArgReg == 0) 3284 return false; 3285 } 3286 3287 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), ArgReg, 3288 ArgVT, ArgReg); 3289 assert(Emitted && "Failed to emit a zext!"); (void)Emitted; 3290 ArgVT = VA.getLocVT(); 3291 break; 3292 } 3293 case CCValAssign::AExt: { 3294 assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() && 3295 "Unexpected extend"); 3296 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(), ArgReg, 3297 ArgVT, ArgReg); 3298 if (!Emitted) 3299 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), ArgReg, 3300 ArgVT, ArgReg); 3301 if (!Emitted) 3302 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), ArgReg, 3303 ArgVT, ArgReg); 3304 3305 assert(Emitted && "Failed to emit a aext!"); (void)Emitted; 3306 ArgVT = VA.getLocVT(); 3307 break; 3308 } 3309 case CCValAssign::BCvt: { 3310 ArgReg = fastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, ArgReg, 3311 /*TODO: Kill=*/false); 3312 assert(ArgReg && "Failed to emit a bitcast!"); 3313 ArgVT = VA.getLocVT(); 3314 break; 3315 } 3316 case CCValAssign::VExt: 3317 // VExt has not been implemented, so this should be impossible to reach 3318 // for now. However, fallback to Selection DAG isel once implemented. 3319 return false; 3320 case CCValAssign::AExtUpper: 3321 case CCValAssign::SExtUpper: 3322 case CCValAssign::ZExtUpper: 3323 case CCValAssign::FPExt: 3324 llvm_unreachable("Unexpected loc info!"); 3325 case CCValAssign::Indirect: 3326 // FIXME: Indirect doesn't need extending, but fast-isel doesn't fully 3327 // support this. 3328 return false; 3329 } 3330 3331 if (VA.isRegLoc()) { 3332 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3333 TII.get(TargetOpcode::COPY), VA.getLocReg()).addReg(ArgReg); 3334 OutRegs.push_back(VA.getLocReg()); 3335 } else { 3336 assert(VA.isMemLoc()); 3337 3338 // Don't emit stores for undef values. 3339 if (isa<UndefValue>(ArgVal)) 3340 continue; 3341 3342 unsigned LocMemOffset = VA.getLocMemOffset(); 3343 X86AddressMode AM; 3344 AM.Base.Reg = RegInfo->getStackRegister(); 3345 AM.Disp = LocMemOffset; 3346 ISD::ArgFlagsTy Flags = OutFlags[VA.getValNo()]; 3347 unsigned Alignment = DL.getABITypeAlignment(ArgVal->getType()); 3348 MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand( 3349 MachinePointerInfo::getStack(*FuncInfo.MF, LocMemOffset), 3350 MachineMemOperand::MOStore, ArgVT.getStoreSize(), Alignment); 3351 if (Flags.isByVal()) { 3352 X86AddressMode SrcAM; 3353 SrcAM.Base.Reg = ArgReg; 3354 if (!TryEmitSmallMemcpy(AM, SrcAM, Flags.getByValSize())) 3355 return false; 3356 } else if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal)) { 3357 // If this is a really simple value, emit this with the Value* version 3358 // of X86FastEmitStore. If it isn't simple, we don't want to do this, 3359 // as it can cause us to reevaluate the argument. 3360 if (!X86FastEmitStore(ArgVT, ArgVal, AM, MMO)) 3361 return false; 3362 } else { 3363 bool ValIsKill = hasTrivialKill(ArgVal); 3364 if (!X86FastEmitStore(ArgVT, ArgReg, ValIsKill, AM, MMO)) 3365 return false; 3366 } 3367 } 3368 } 3369 3370 // ELF / PIC requires GOT in the EBX register before function calls via PLT 3371 // GOT pointer. 3372 if (Subtarget->isPICStyleGOT()) { 3373 unsigned Base = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF); 3374 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3375 TII.get(TargetOpcode::COPY), X86::EBX).addReg(Base); 3376 } 3377 3378 if (Is64Bit && IsVarArg && !IsWin64) { 3379 // From AMD64 ABI document: 3380 // For calls that may call functions that use varargs or stdargs 3381 // (prototype-less calls or calls to functions containing ellipsis (...) in 3382 // the declaration) %al is used as hidden argument to specify the number 3383 // of SSE registers used. The contents of %al do not need to match exactly 3384 // the number of registers, but must be an ubound on the number of SSE 3385 // registers used and is in the range 0 - 8 inclusive. 3386 3387 // Count the number of XMM registers allocated. 3388 static const MCPhysReg XMMArgRegs[] = { 3389 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3, 3390 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7 3391 }; 3392 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs); 3393 assert((Subtarget->hasSSE1() || !NumXMMRegs) 3394 && "SSE registers cannot be used when SSE is disabled"); 3395 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV8ri), 3396 X86::AL).addImm(NumXMMRegs); 3397 } 3398 3399 // Materialize callee address in a register. FIXME: GV address can be 3400 // handled with a CALLpcrel32 instead. 3401 X86AddressMode CalleeAM; 3402 if (!X86SelectCallAddress(Callee, CalleeAM)) 3403 return false; 3404 3405 unsigned CalleeOp = 0; 3406 const GlobalValue *GV = nullptr; 3407 if (CalleeAM.GV != nullptr) { 3408 GV = CalleeAM.GV; 3409 } else if (CalleeAM.Base.Reg != 0) { 3410 CalleeOp = CalleeAM.Base.Reg; 3411 } else 3412 return false; 3413 3414 // Issue the call. 3415 MachineInstrBuilder MIB; 3416 if (CalleeOp) { 3417 // Register-indirect call. 3418 unsigned CallOpc = Is64Bit ? X86::CALL64r : X86::CALL32r; 3419 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CallOpc)) 3420 .addReg(CalleeOp); 3421 } else { 3422 // Direct call. 3423 assert(GV && "Not a direct call"); 3424 unsigned CallOpc = Is64Bit ? X86::CALL64pcrel32 : X86::CALLpcrel32; 3425 3426 // See if we need any target-specific flags on the GV operand. 3427 unsigned char OpFlags = Subtarget->classifyGlobalFunctionReference(GV); 3428 // Ignore NonLazyBind attribute in FastISel 3429 if (OpFlags == X86II::MO_GOTPCREL) 3430 OpFlags = 0; 3431 3432 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CallOpc)); 3433 if (Symbol) 3434 MIB.addSym(Symbol, OpFlags); 3435 else 3436 MIB.addGlobalAddress(GV, 0, OpFlags); 3437 } 3438 3439 // Add a register mask operand representing the call-preserved registers. 3440 // Proper defs for return values will be added by setPhysRegsDeadExcept(). 3441 MIB.addRegMask(TRI.getCallPreservedMask(*FuncInfo.MF, CC)); 3442 3443 // Add an implicit use GOT pointer in EBX. 3444 if (Subtarget->isPICStyleGOT()) 3445 MIB.addReg(X86::EBX, RegState::Implicit); 3446 3447 if (Is64Bit && IsVarArg && !IsWin64) 3448 MIB.addReg(X86::AL, RegState::Implicit); 3449 3450 // Add implicit physical register uses to the call. 3451 for (auto Reg : OutRegs) 3452 MIB.addReg(Reg, RegState::Implicit); 3453 3454 // Issue CALLSEQ_END 3455 unsigned NumBytesForCalleeToPop = 3456 X86::isCalleePop(CC, Subtarget->is64Bit(), IsVarArg, 3457 TM.Options.GuaranteedTailCallOpt) 3458 ? NumBytes // Callee pops everything. 3459 : computeBytesPoppedByCalleeForSRet(Subtarget, CC, CLI.CS); 3460 unsigned AdjStackUp = TII.getCallFrameDestroyOpcode(); 3461 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackUp)) 3462 .addImm(NumBytes).addImm(NumBytesForCalleeToPop); 3463 3464 // Now handle call return values. 3465 SmallVector<CCValAssign, 16> RVLocs; 3466 CCState CCRetInfo(CC, IsVarArg, *FuncInfo.MF, RVLocs, 3467 CLI.RetTy->getContext()); 3468 CCRetInfo.AnalyzeCallResult(Ins, RetCC_X86); 3469 3470 // Copy all of the result registers out of their specified physreg. 3471 unsigned ResultReg = FuncInfo.CreateRegs(CLI.RetTy); 3472 for (unsigned i = 0; i != RVLocs.size(); ++i) { 3473 CCValAssign &VA = RVLocs[i]; 3474 EVT CopyVT = VA.getValVT(); 3475 unsigned CopyReg = ResultReg + i; 3476 3477 // If this is x86-64, and we disabled SSE, we can't return FP values 3478 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) && 3479 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) { 3480 report_fatal_error("SSE register return with SSE disabled"); 3481 } 3482 3483 // If we prefer to use the value in xmm registers, copy it out as f80 and 3484 // use a truncate to move it from fp stack reg to xmm reg. 3485 if ((VA.getLocReg() == X86::FP0 || VA.getLocReg() == X86::FP1) && 3486 isScalarFPTypeInSSEReg(VA.getValVT())) { 3487 CopyVT = MVT::f80; 3488 CopyReg = createResultReg(&X86::RFP80RegClass); 3489 } 3490 3491 // Copy out the result. 3492 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3493 TII.get(TargetOpcode::COPY), CopyReg).addReg(VA.getLocReg()); 3494 InRegs.push_back(VA.getLocReg()); 3495 3496 // Round the f80 to the right size, which also moves it to the appropriate 3497 // xmm register. This is accomplished by storing the f80 value in memory 3498 // and then loading it back. 3499 if (CopyVT != VA.getValVT()) { 3500 EVT ResVT = VA.getValVT(); 3501 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64; 3502 unsigned MemSize = ResVT.getSizeInBits()/8; 3503 int FI = MFI.CreateStackObject(MemSize, MemSize, false); 3504 addFrameReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3505 TII.get(Opc)), FI) 3506 .addReg(CopyReg); 3507 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm; 3508 addFrameReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3509 TII.get(Opc), ResultReg + i), FI); 3510 } 3511 } 3512 3513 CLI.ResultReg = ResultReg; 3514 CLI.NumResultRegs = RVLocs.size(); 3515 CLI.Call = MIB; 3516 3517 return true; 3518 } 3519 3520 bool 3521 X86FastISel::fastSelectInstruction(const Instruction *I) { 3522 switch (I->getOpcode()) { 3523 default: break; 3524 case Instruction::Load: 3525 return X86SelectLoad(I); 3526 case Instruction::Store: 3527 return X86SelectStore(I); 3528 case Instruction::Ret: 3529 return X86SelectRet(I); 3530 case Instruction::ICmp: 3531 case Instruction::FCmp: 3532 return X86SelectCmp(I); 3533 case Instruction::ZExt: 3534 return X86SelectZExt(I); 3535 case Instruction::Br: 3536 return X86SelectBranch(I); 3537 case Instruction::LShr: 3538 case Instruction::AShr: 3539 case Instruction::Shl: 3540 return X86SelectShift(I); 3541 case Instruction::SDiv: 3542 case Instruction::UDiv: 3543 case Instruction::SRem: 3544 case Instruction::URem: 3545 return X86SelectDivRem(I); 3546 case Instruction::Select: 3547 return X86SelectSelect(I); 3548 case Instruction::Trunc: 3549 return X86SelectTrunc(I); 3550 case Instruction::FPExt: 3551 return X86SelectFPExt(I); 3552 case Instruction::FPTrunc: 3553 return X86SelectFPTrunc(I); 3554 case Instruction::SIToFP: 3555 return X86SelectSIToFP(I); 3556 case Instruction::IntToPtr: // Deliberate fall-through. 3557 case Instruction::PtrToInt: { 3558 EVT SrcVT = TLI.getValueType(DL, I->getOperand(0)->getType()); 3559 EVT DstVT = TLI.getValueType(DL, I->getType()); 3560 if (DstVT.bitsGT(SrcVT)) 3561 return X86SelectZExt(I); 3562 if (DstVT.bitsLT(SrcVT)) 3563 return X86SelectTrunc(I); 3564 unsigned Reg = getRegForValue(I->getOperand(0)); 3565 if (Reg == 0) return false; 3566 updateValueMap(I, Reg); 3567 return true; 3568 } 3569 case Instruction::BitCast: { 3570 // Select SSE2/AVX bitcasts between 128/256 bit vector types. 3571 if (!Subtarget->hasSSE2()) 3572 return false; 3573 3574 EVT SrcVT = TLI.getValueType(DL, I->getOperand(0)->getType()); 3575 EVT DstVT = TLI.getValueType(DL, I->getType()); 3576 3577 if (!SrcVT.isSimple() || !DstVT.isSimple()) 3578 return false; 3579 3580 MVT SVT = SrcVT.getSimpleVT(); 3581 MVT DVT = DstVT.getSimpleVT(); 3582 3583 if (!SVT.is128BitVector() && 3584 !(Subtarget->hasAVX() && SVT.is256BitVector()) && 3585 !(Subtarget->hasAVX512() && SVT.is512BitVector() && 3586 (Subtarget->hasBWI() || (SVT.getScalarSizeInBits() >= 32 && 3587 DVT.getScalarSizeInBits() >= 32)))) 3588 return false; 3589 3590 unsigned Reg = getRegForValue(I->getOperand(0)); 3591 if (Reg == 0) 3592 return false; 3593 3594 // No instruction is needed for conversion. Reuse the register used by 3595 // the fist operand. 3596 updateValueMap(I, Reg); 3597 return true; 3598 } 3599 } 3600 3601 return false; 3602 } 3603 3604 unsigned X86FastISel::X86MaterializeInt(const ConstantInt *CI, MVT VT) { 3605 if (VT > MVT::i64) 3606 return 0; 3607 3608 uint64_t Imm = CI->getZExtValue(); 3609 if (Imm == 0) { 3610 unsigned SrcReg = fastEmitInst_(X86::MOV32r0, &X86::GR32RegClass); 3611 switch (VT.SimpleTy) { 3612 default: llvm_unreachable("Unexpected value type"); 3613 case MVT::i1: 3614 case MVT::i8: 3615 return fastEmitInst_extractsubreg(MVT::i8, SrcReg, /*Kill=*/true, 3616 X86::sub_8bit); 3617 case MVT::i16: 3618 return fastEmitInst_extractsubreg(MVT::i16, SrcReg, /*Kill=*/true, 3619 X86::sub_16bit); 3620 case MVT::i32: 3621 return SrcReg; 3622 case MVT::i64: { 3623 unsigned ResultReg = createResultReg(&X86::GR64RegClass); 3624 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3625 TII.get(TargetOpcode::SUBREG_TO_REG), ResultReg) 3626 .addImm(0).addReg(SrcReg).addImm(X86::sub_32bit); 3627 return ResultReg; 3628 } 3629 } 3630 } 3631 3632 unsigned Opc = 0; 3633 switch (VT.SimpleTy) { 3634 default: llvm_unreachable("Unexpected value type"); 3635 case MVT::i1: VT = MVT::i8; LLVM_FALLTHROUGH; 3636 case MVT::i8: Opc = X86::MOV8ri; break; 3637 case MVT::i16: Opc = X86::MOV16ri; break; 3638 case MVT::i32: Opc = X86::MOV32ri; break; 3639 case MVT::i64: { 3640 if (isUInt<32>(Imm)) 3641 Opc = X86::MOV32ri; 3642 else if (isInt<32>(Imm)) 3643 Opc = X86::MOV64ri32; 3644 else 3645 Opc = X86::MOV64ri; 3646 break; 3647 } 3648 } 3649 if (VT == MVT::i64 && Opc == X86::MOV32ri) { 3650 unsigned SrcReg = fastEmitInst_i(Opc, &X86::GR32RegClass, Imm); 3651 unsigned ResultReg = createResultReg(&X86::GR64RegClass); 3652 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3653 TII.get(TargetOpcode::SUBREG_TO_REG), ResultReg) 3654 .addImm(0).addReg(SrcReg).addImm(X86::sub_32bit); 3655 return ResultReg; 3656 } 3657 return fastEmitInst_i(Opc, TLI.getRegClassFor(VT), Imm); 3658 } 3659 3660 unsigned X86FastISel::X86MaterializeFP(const ConstantFP *CFP, MVT VT) { 3661 if (CFP->isNullValue()) 3662 return fastMaterializeFloatZero(CFP); 3663 3664 // Can't handle alternate code models yet. 3665 CodeModel::Model CM = TM.getCodeModel(); 3666 if (CM != CodeModel::Small && CM != CodeModel::Large) 3667 return 0; 3668 3669 // Get opcode and regclass of the output for the given load instruction. 3670 unsigned Opc = 0; 3671 const TargetRegisterClass *RC = nullptr; 3672 switch (VT.SimpleTy) { 3673 default: return 0; 3674 case MVT::f32: 3675 if (X86ScalarSSEf32) { 3676 Opc = Subtarget->hasAVX() ? X86::VMOVSSrm : X86::MOVSSrm; 3677 RC = &X86::FR32RegClass; 3678 } else { 3679 Opc = X86::LD_Fp32m; 3680 RC = &X86::RFP32RegClass; 3681 } 3682 break; 3683 case MVT::f64: 3684 if (X86ScalarSSEf64) { 3685 Opc = Subtarget->hasAVX() ? X86::VMOVSDrm : X86::MOVSDrm; 3686 RC = &X86::FR64RegClass; 3687 } else { 3688 Opc = X86::LD_Fp64m; 3689 RC = &X86::RFP64RegClass; 3690 } 3691 break; 3692 case MVT::f80: 3693 // No f80 support yet. 3694 return 0; 3695 } 3696 3697 // MachineConstantPool wants an explicit alignment. 3698 unsigned Align = DL.getPrefTypeAlignment(CFP->getType()); 3699 if (Align == 0) { 3700 // Alignment of vector types. FIXME! 3701 Align = DL.getTypeAllocSize(CFP->getType()); 3702 } 3703 3704 // x86-32 PIC requires a PIC base register for constant pools. 3705 unsigned PICBase = 0; 3706 unsigned char OpFlag = Subtarget->classifyLocalReference(nullptr); 3707 if (OpFlag == X86II::MO_PIC_BASE_OFFSET) 3708 PICBase = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF); 3709 else if (OpFlag == X86II::MO_GOTOFF) 3710 PICBase = getInstrInfo()->getGlobalBaseReg(FuncInfo.MF); 3711 else if (Subtarget->is64Bit() && TM.getCodeModel() == CodeModel::Small) 3712 PICBase = X86::RIP; 3713 3714 // Create the load from the constant pool. 3715 unsigned CPI = MCP.getConstantPoolIndex(CFP, Align); 3716 unsigned ResultReg = createResultReg(RC); 3717 3718 if (CM == CodeModel::Large) { 3719 unsigned AddrReg = createResultReg(&X86::GR64RegClass); 3720 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV64ri), 3721 AddrReg) 3722 .addConstantPoolIndex(CPI, 0, OpFlag); 3723 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3724 TII.get(Opc), ResultReg); 3725 addDirectMem(MIB, AddrReg); 3726 MachineMemOperand *MMO = FuncInfo.MF->getMachineMemOperand( 3727 MachinePointerInfo::getConstantPool(*FuncInfo.MF), 3728 MachineMemOperand::MOLoad, DL.getPointerSize(), Align); 3729 MIB->addMemOperand(*FuncInfo.MF, MMO); 3730 return ResultReg; 3731 } 3732 3733 addConstantPoolReference(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3734 TII.get(Opc), ResultReg), 3735 CPI, PICBase, OpFlag); 3736 return ResultReg; 3737 } 3738 3739 unsigned X86FastISel::X86MaterializeGV(const GlobalValue *GV, MVT VT) { 3740 // Can't handle alternate code models yet. 3741 if (TM.getCodeModel() != CodeModel::Small) 3742 return 0; 3743 3744 // Materialize addresses with LEA/MOV instructions. 3745 X86AddressMode AM; 3746 if (X86SelectAddress(GV, AM)) { 3747 // If the expression is just a basereg, then we're done, otherwise we need 3748 // to emit an LEA. 3749 if (AM.BaseType == X86AddressMode::RegBase && 3750 AM.IndexReg == 0 && AM.Disp == 0 && AM.GV == nullptr) 3751 return AM.Base.Reg; 3752 3753 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT)); 3754 if (TM.getRelocationModel() == Reloc::Static && 3755 TLI.getPointerTy(DL) == MVT::i64) { 3756 // The displacement code could be more than 32 bits away so we need to use 3757 // an instruction with a 64 bit immediate 3758 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(X86::MOV64ri), 3759 ResultReg) 3760 .addGlobalAddress(GV); 3761 } else { 3762 unsigned Opc = 3763 TLI.getPointerTy(DL) == MVT::i32 3764 ? (Subtarget->isTarget64BitILP32() ? X86::LEA64_32r : X86::LEA32r) 3765 : X86::LEA64r; 3766 addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3767 TII.get(Opc), ResultReg), AM); 3768 } 3769 return ResultReg; 3770 } 3771 return 0; 3772 } 3773 3774 unsigned X86FastISel::fastMaterializeConstant(const Constant *C) { 3775 EVT CEVT = TLI.getValueType(DL, C->getType(), true); 3776 3777 // Only handle simple types. 3778 if (!CEVT.isSimple()) 3779 return 0; 3780 MVT VT = CEVT.getSimpleVT(); 3781 3782 if (const auto *CI = dyn_cast<ConstantInt>(C)) 3783 return X86MaterializeInt(CI, VT); 3784 else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) 3785 return X86MaterializeFP(CFP, VT); 3786 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C)) 3787 return X86MaterializeGV(GV, VT); 3788 3789 return 0; 3790 } 3791 3792 unsigned X86FastISel::fastMaterializeAlloca(const AllocaInst *C) { 3793 // Fail on dynamic allocas. At this point, getRegForValue has already 3794 // checked its CSE maps, so if we're here trying to handle a dynamic 3795 // alloca, we're not going to succeed. X86SelectAddress has a 3796 // check for dynamic allocas, because it's called directly from 3797 // various places, but targetMaterializeAlloca also needs a check 3798 // in order to avoid recursion between getRegForValue, 3799 // X86SelectAddrss, and targetMaterializeAlloca. 3800 if (!FuncInfo.StaticAllocaMap.count(C)) 3801 return 0; 3802 assert(C->isStaticAlloca() && "dynamic alloca in the static alloca map?"); 3803 3804 X86AddressMode AM; 3805 if (!X86SelectAddress(C, AM)) 3806 return 0; 3807 unsigned Opc = 3808 TLI.getPointerTy(DL) == MVT::i32 3809 ? (Subtarget->isTarget64BitILP32() ? X86::LEA64_32r : X86::LEA32r) 3810 : X86::LEA64r; 3811 const TargetRegisterClass *RC = TLI.getRegClassFor(TLI.getPointerTy(DL)); 3812 unsigned ResultReg = createResultReg(RC); 3813 addFullAddress(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3814 TII.get(Opc), ResultReg), AM); 3815 return ResultReg; 3816 } 3817 3818 unsigned X86FastISel::fastMaterializeFloatZero(const ConstantFP *CF) { 3819 MVT VT; 3820 if (!isTypeLegal(CF->getType(), VT)) 3821 return 0; 3822 3823 // Get opcode and regclass for the given zero. 3824 unsigned Opc = 0; 3825 const TargetRegisterClass *RC = nullptr; 3826 switch (VT.SimpleTy) { 3827 default: return 0; 3828 case MVT::f32: 3829 if (X86ScalarSSEf32) { 3830 Opc = X86::FsFLD0SS; 3831 RC = &X86::FR32RegClass; 3832 } else { 3833 Opc = X86::LD_Fp032; 3834 RC = &X86::RFP32RegClass; 3835 } 3836 break; 3837 case MVT::f64: 3838 if (X86ScalarSSEf64) { 3839 Opc = X86::FsFLD0SD; 3840 RC = &X86::FR64RegClass; 3841 } else { 3842 Opc = X86::LD_Fp064; 3843 RC = &X86::RFP64RegClass; 3844 } 3845 break; 3846 case MVT::f80: 3847 // No f80 support yet. 3848 return 0; 3849 } 3850 3851 unsigned ResultReg = createResultReg(RC); 3852 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), ResultReg); 3853 return ResultReg; 3854 } 3855 3856 3857 bool X86FastISel::tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo, 3858 const LoadInst *LI) { 3859 const Value *Ptr = LI->getPointerOperand(); 3860 X86AddressMode AM; 3861 if (!X86SelectAddress(Ptr, AM)) 3862 return false; 3863 3864 const X86InstrInfo &XII = (const X86InstrInfo &)TII; 3865 3866 unsigned Size = DL.getTypeAllocSize(LI->getType()); 3867 unsigned Alignment = LI->getAlignment(); 3868 3869 if (Alignment == 0) // Ensure that codegen never sees alignment 0 3870 Alignment = DL.getABITypeAlignment(LI->getType()); 3871 3872 SmallVector<MachineOperand, 8> AddrOps; 3873 AM.getFullAddress(AddrOps); 3874 3875 MachineInstr *Result = XII.foldMemoryOperandImpl( 3876 *FuncInfo.MF, *MI, OpNo, AddrOps, FuncInfo.InsertPt, Size, Alignment, 3877 /*AllowCommute=*/true); 3878 if (!Result) 3879 return false; 3880 3881 // The index register could be in the wrong register class. Unfortunately, 3882 // foldMemoryOperandImpl could have commuted the instruction so its not enough 3883 // to just look at OpNo + the offset to the index reg. We actually need to 3884 // scan the instruction to find the index reg and see if its the correct reg 3885 // class. 3886 unsigned OperandNo = 0; 3887 for (MachineInstr::mop_iterator I = Result->operands_begin(), 3888 E = Result->operands_end(); I != E; ++I, ++OperandNo) { 3889 MachineOperand &MO = *I; 3890 if (!MO.isReg() || MO.isDef() || MO.getReg() != AM.IndexReg) 3891 continue; 3892 // Found the index reg, now try to rewrite it. 3893 unsigned IndexReg = constrainOperandRegClass(Result->getDesc(), 3894 MO.getReg(), OperandNo); 3895 if (IndexReg == MO.getReg()) 3896 continue; 3897 MO.setReg(IndexReg); 3898 } 3899 3900 Result->addMemOperand(*FuncInfo.MF, createMachineMemOperandFor(LI)); 3901 MI->eraseFromParent(); 3902 return true; 3903 } 3904 3905 unsigned X86FastISel::fastEmitInst_rrrr(unsigned MachineInstOpcode, 3906 const TargetRegisterClass *RC, 3907 unsigned Op0, bool Op0IsKill, 3908 unsigned Op1, bool Op1IsKill, 3909 unsigned Op2, bool Op2IsKill, 3910 unsigned Op3, bool Op3IsKill) { 3911 const MCInstrDesc &II = TII.get(MachineInstOpcode); 3912 3913 unsigned ResultReg = createResultReg(RC); 3914 Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); 3915 Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1); 3916 Op2 = constrainOperandRegClass(II, Op2, II.getNumDefs() + 2); 3917 Op2 = constrainOperandRegClass(II, Op2, II.getNumDefs() + 3); 3918 3919 if (II.getNumDefs() >= 1) 3920 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) 3921 .addReg(Op0, getKillRegState(Op0IsKill)) 3922 .addReg(Op1, getKillRegState(Op1IsKill)) 3923 .addReg(Op2, getKillRegState(Op2IsKill)) 3924 .addReg(Op3, getKillRegState(Op3IsKill)); 3925 else { 3926 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 3927 .addReg(Op0, getKillRegState(Op0IsKill)) 3928 .addReg(Op1, getKillRegState(Op1IsKill)) 3929 .addReg(Op2, getKillRegState(Op2IsKill)) 3930 .addReg(Op3, getKillRegState(Op3IsKill)); 3931 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 3932 TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); 3933 } 3934 return ResultReg; 3935 } 3936 3937 3938 namespace llvm { 3939 FastISel *X86::createFastISel(FunctionLoweringInfo &funcInfo, 3940 const TargetLibraryInfo *libInfo) { 3941 return new X86FastISel(funcInfo, libInfo); 3942 } 3943 } 3944