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