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 "X86InstrBuilder.h" 18 #include "X86ISelLowering.h" 19 #include "X86RegisterInfo.h" 20 #include "X86Subtarget.h" 21 #include "X86TargetMachine.h" 22 #include "llvm/CallingConv.h" 23 #include "llvm/DerivedTypes.h" 24 #include "llvm/GlobalVariable.h" 25 #include "llvm/Instructions.h" 26 #include "llvm/IntrinsicInst.h" 27 #include "llvm/CodeGen/FastISel.h" 28 #include "llvm/CodeGen/MachineConstantPool.h" 29 #include "llvm/CodeGen/MachineFrameInfo.h" 30 #include "llvm/CodeGen/MachineRegisterInfo.h" 31 #include "llvm/Support/CallSite.h" 32 #include "llvm/Support/GetElementPtrTypeIterator.h" 33 #include "llvm/Target/TargetOptions.h" 34 using namespace llvm; 35 36 namespace { 37 38 class X86FastISel : public FastISel { 39 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can 40 /// make the right decision when generating code for different targets. 41 const X86Subtarget *Subtarget; 42 43 /// StackPtr - Register used as the stack pointer. 44 /// 45 unsigned StackPtr; 46 47 /// X86ScalarSSEf32, X86ScalarSSEf64 - Select between SSE or x87 48 /// floating point ops. 49 /// When SSE is available, use it for f32 operations. 50 /// When SSE2 is available, use it for f64 operations. 51 bool X86ScalarSSEf64; 52 bool X86ScalarSSEf32; 53 54 public: 55 explicit X86FastISel(MachineFunction &mf, 56 MachineModuleInfo *mmi, 57 DwarfWriter *dw, 58 DenseMap<const Value *, unsigned> &vm, 59 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm, 60 DenseMap<const AllocaInst *, int> &am 61 #ifndef NDEBUG 62 , SmallSet<Instruction*, 8> &cil 63 #endif 64 ) 65 : FastISel(mf, mmi, dw, vm, bm, am 66 #ifndef NDEBUG 67 , cil 68 #endif 69 ) { 70 Subtarget = &TM.getSubtarget<X86Subtarget>(); 71 StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP; 72 X86ScalarSSEf64 = Subtarget->hasSSE2(); 73 X86ScalarSSEf32 = Subtarget->hasSSE1(); 74 } 75 76 virtual bool TargetSelectInstruction(Instruction *I); 77 78 #include "X86GenFastISel.inc" 79 80 private: 81 bool X86FastEmitCompare(Value *LHS, Value *RHS, MVT VT); 82 83 bool X86FastEmitLoad(MVT VT, const X86AddressMode &AM, unsigned &RR); 84 85 bool X86FastEmitStore(MVT VT, Value *Val, 86 const X86AddressMode &AM); 87 bool X86FastEmitStore(MVT VT, unsigned Val, 88 const X86AddressMode &AM); 89 90 bool X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT, unsigned Src, MVT SrcVT, 91 unsigned &ResultReg); 92 93 bool X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall); 94 95 bool X86SelectLoad(Instruction *I); 96 97 bool X86SelectStore(Instruction *I); 98 99 bool X86SelectCmp(Instruction *I); 100 101 bool X86SelectZExt(Instruction *I); 102 103 bool X86SelectBranch(Instruction *I); 104 105 bool X86SelectShift(Instruction *I); 106 107 bool X86SelectSelect(Instruction *I); 108 109 bool X86SelectTrunc(Instruction *I); 110 111 bool X86SelectFPExt(Instruction *I); 112 bool X86SelectFPTrunc(Instruction *I); 113 114 bool X86SelectExtractValue(Instruction *I); 115 116 bool X86VisitIntrinsicCall(IntrinsicInst &I); 117 bool X86SelectCall(Instruction *I); 118 119 CCAssignFn *CCAssignFnForCall(unsigned CC, bool isTailCall = false); 120 121 const X86InstrInfo *getInstrInfo() const { 122 return getTargetMachine()->getInstrInfo(); 123 } 124 const X86TargetMachine *getTargetMachine() const { 125 return static_cast<const X86TargetMachine *>(&TM); 126 } 127 128 unsigned TargetMaterializeConstant(Constant *C); 129 130 unsigned TargetMaterializeAlloca(AllocaInst *C); 131 132 /// isScalarFPTypeInSSEReg - Return true if the specified scalar FP type is 133 /// computed in an SSE register, not on the X87 floating point stack. 134 bool isScalarFPTypeInSSEReg(MVT VT) const { 135 return (VT == MVT::f64 && X86ScalarSSEf64) || // f64 is when SSE2 136 (VT == MVT::f32 && X86ScalarSSEf32); // f32 is when SSE1 137 } 138 139 bool isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1 = false); 140 }; 141 142 } // end anonymous namespace. 143 144 bool X86FastISel::isTypeLegal(const Type *Ty, MVT &VT, bool AllowI1) { 145 VT = TLI.getValueType(Ty, /*HandleUnknown=*/true); 146 if (VT == MVT::Other || !VT.isSimple()) 147 // Unhandled type. Halt "fast" selection and bail. 148 return false; 149 150 // For now, require SSE/SSE2 for performing floating-point operations, 151 // since x87 requires additional work. 152 if (VT == MVT::f64 && !X86ScalarSSEf64) 153 return false; 154 if (VT == MVT::f32 && !X86ScalarSSEf32) 155 return false; 156 // Similarly, no f80 support yet. 157 if (VT == MVT::f80) 158 return false; 159 // We only handle legal types. For example, on x86-32 the instruction 160 // selector contains all of the 64-bit instructions from x86-64, 161 // under the assumption that i64 won't be used if the target doesn't 162 // support it. 163 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT); 164 } 165 166 #include "X86GenCallingConv.inc" 167 168 /// CCAssignFnForCall - Selects the correct CCAssignFn for a given calling 169 /// convention. 170 CCAssignFn *X86FastISel::CCAssignFnForCall(unsigned CC, bool isTaillCall) { 171 if (Subtarget->is64Bit()) { 172 if (Subtarget->isTargetWin64()) 173 return CC_X86_Win64_C; 174 else 175 return CC_X86_64_C; 176 } 177 178 if (CC == CallingConv::X86_FastCall) 179 return CC_X86_32_FastCall; 180 else if (CC == CallingConv::Fast) 181 return CC_X86_32_FastCC; 182 else 183 return CC_X86_32_C; 184 } 185 186 /// X86FastEmitLoad - Emit a machine instruction to load a value of type VT. 187 /// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV. 188 /// Return true and the result register by reference if it is possible. 189 bool X86FastISel::X86FastEmitLoad(MVT VT, const X86AddressMode &AM, 190 unsigned &ResultReg) { 191 // Get opcode and regclass of the output for the given load instruction. 192 unsigned Opc = 0; 193 const TargetRegisterClass *RC = NULL; 194 switch (VT.getSimpleVT()) { 195 default: return false; 196 case MVT::i8: 197 Opc = X86::MOV8rm; 198 RC = X86::GR8RegisterClass; 199 break; 200 case MVT::i16: 201 Opc = X86::MOV16rm; 202 RC = X86::GR16RegisterClass; 203 break; 204 case MVT::i32: 205 Opc = X86::MOV32rm; 206 RC = X86::GR32RegisterClass; 207 break; 208 case MVT::i64: 209 // Must be in x86-64 mode. 210 Opc = X86::MOV64rm; 211 RC = X86::GR64RegisterClass; 212 break; 213 case MVT::f32: 214 if (Subtarget->hasSSE1()) { 215 Opc = X86::MOVSSrm; 216 RC = X86::FR32RegisterClass; 217 } else { 218 Opc = X86::LD_Fp32m; 219 RC = X86::RFP32RegisterClass; 220 } 221 break; 222 case MVT::f64: 223 if (Subtarget->hasSSE2()) { 224 Opc = X86::MOVSDrm; 225 RC = X86::FR64RegisterClass; 226 } else { 227 Opc = X86::LD_Fp64m; 228 RC = X86::RFP64RegisterClass; 229 } 230 break; 231 case MVT::f80: 232 // No f80 support yet. 233 return false; 234 } 235 236 ResultReg = createResultReg(RC); 237 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM); 238 return true; 239 } 240 241 /// X86FastEmitStore - Emit a machine instruction to store a value Val of 242 /// type VT. The address is either pre-computed, consisted of a base ptr, Ptr 243 /// and a displacement offset, or a GlobalAddress, 244 /// i.e. V. Return true if it is possible. 245 bool 246 X86FastISel::X86FastEmitStore(MVT VT, unsigned Val, 247 const X86AddressMode &AM) { 248 // Get opcode and regclass of the output for the given store instruction. 249 unsigned Opc = 0; 250 switch (VT.getSimpleVT()) { 251 case MVT::f80: // No f80 support yet. 252 default: return false; 253 case MVT::i8: Opc = X86::MOV8mr; break; 254 case MVT::i16: Opc = X86::MOV16mr; break; 255 case MVT::i32: Opc = X86::MOV32mr; break; 256 case MVT::i64: Opc = X86::MOV64mr; break; // Must be in x86-64 mode. 257 case MVT::f32: 258 Opc = Subtarget->hasSSE1() ? X86::MOVSSmr : X86::ST_Fp32m; 259 break; 260 case MVT::f64: 261 Opc = Subtarget->hasSSE2() ? X86::MOVSDmr : X86::ST_Fp64m; 262 break; 263 } 264 265 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM).addReg(Val); 266 return true; 267 } 268 269 bool X86FastISel::X86FastEmitStore(MVT VT, Value *Val, 270 const X86AddressMode &AM) { 271 // Handle 'null' like i32/i64 0. 272 if (isa<ConstantPointerNull>(Val)) 273 Val = Constant::getNullValue(TD.getIntPtrType()); 274 275 // If this is a store of a simple constant, fold the constant into the store. 276 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) { 277 unsigned Opc = 0; 278 switch (VT.getSimpleVT()) { 279 default: break; 280 case MVT::i8: Opc = X86::MOV8mi; break; 281 case MVT::i16: Opc = X86::MOV16mi; break; 282 case MVT::i32: Opc = X86::MOV32mi; break; 283 case MVT::i64: 284 // Must be a 32-bit sign extended value. 285 if ((int)CI->getSExtValue() == CI->getSExtValue()) 286 Opc = X86::MOV64mi32; 287 break; 288 } 289 290 if (Opc) { 291 addFullAddress(BuildMI(MBB, DL, TII.get(Opc)), AM) 292 .addImm(CI->getSExtValue()); 293 return true; 294 } 295 } 296 297 unsigned ValReg = getRegForValue(Val); 298 if (ValReg == 0) 299 return false; 300 301 return X86FastEmitStore(VT, ValReg, AM); 302 } 303 304 /// X86FastEmitExtend - Emit a machine instruction to extend a value Src of 305 /// type SrcVT to type DstVT using the specified extension opcode Opc (e.g. 306 /// ISD::SIGN_EXTEND). 307 bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, MVT DstVT, 308 unsigned Src, MVT SrcVT, 309 unsigned &ResultReg) { 310 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, Src); 311 312 if (RR != 0) { 313 ResultReg = RR; 314 return true; 315 } else 316 return false; 317 } 318 319 /// X86SelectAddress - Attempt to fill in an address from the given value. 320 /// 321 bool X86FastISel::X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall) { 322 User *U = NULL; 323 unsigned Opcode = Instruction::UserOp1; 324 if (Instruction *I = dyn_cast<Instruction>(V)) { 325 Opcode = I->getOpcode(); 326 U = I; 327 } else if (ConstantExpr *C = dyn_cast<ConstantExpr>(V)) { 328 Opcode = C->getOpcode(); 329 U = C; 330 } 331 332 switch (Opcode) { 333 default: break; 334 case Instruction::BitCast: 335 // Look past bitcasts. 336 return X86SelectAddress(U->getOperand(0), AM, isCall); 337 338 case Instruction::IntToPtr: 339 // Look past no-op inttoptrs. 340 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy()) 341 return X86SelectAddress(U->getOperand(0), AM, isCall); 342 break; 343 344 case Instruction::PtrToInt: 345 // Look past no-op ptrtoints. 346 if (TLI.getValueType(U->getType()) == TLI.getPointerTy()) 347 return X86SelectAddress(U->getOperand(0), AM, isCall); 348 break; 349 350 case Instruction::Alloca: { 351 if (isCall) break; 352 // Do static allocas. 353 const AllocaInst *A = cast<AllocaInst>(V); 354 DenseMap<const AllocaInst*, int>::iterator SI = StaticAllocaMap.find(A); 355 if (SI != StaticAllocaMap.end()) { 356 AM.BaseType = X86AddressMode::FrameIndexBase; 357 AM.Base.FrameIndex = SI->second; 358 return true; 359 } 360 break; 361 } 362 363 case Instruction::Add: { 364 if (isCall) break; 365 // Adds of constants are common and easy enough. 366 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) { 367 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue(); 368 // They have to fit in the 32-bit signed displacement field though. 369 if (isInt32(Disp)) { 370 AM.Disp = (uint32_t)Disp; 371 return X86SelectAddress(U->getOperand(0), AM, isCall); 372 } 373 } 374 break; 375 } 376 377 case Instruction::GetElementPtr: { 378 if (isCall) break; 379 // Pattern-match simple GEPs. 380 uint64_t Disp = (int32_t)AM.Disp; 381 unsigned IndexReg = AM.IndexReg; 382 unsigned Scale = AM.Scale; 383 gep_type_iterator GTI = gep_type_begin(U); 384 // Iterate through the indices, folding what we can. Constants can be 385 // folded, and one dynamic index can be handled, if the scale is supported. 386 for (User::op_iterator i = U->op_begin() + 1, e = U->op_end(); 387 i != e; ++i, ++GTI) { 388 Value *Op = *i; 389 if (const StructType *STy = dyn_cast<StructType>(*GTI)) { 390 const StructLayout *SL = TD.getStructLayout(STy); 391 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue(); 392 Disp += SL->getElementOffset(Idx); 393 } else { 394 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType()); 395 if (ConstantInt *CI = dyn_cast<ConstantInt>(Op)) { 396 // Constant-offset addressing. 397 Disp += CI->getSExtValue() * S; 398 } else if (IndexReg == 0 && 399 (!AM.GV || !Subtarget->isPICStyleRIPRel()) && 400 (S == 1 || S == 2 || S == 4 || S == 8)) { 401 // Scaled-index addressing. 402 Scale = S; 403 IndexReg = getRegForGEPIndex(Op); 404 if (IndexReg == 0) 405 return false; 406 } else 407 // Unsupported. 408 goto unsupported_gep; 409 } 410 } 411 // Check for displacement overflow. 412 if (!isInt32(Disp)) 413 break; 414 // Ok, the GEP indices were covered by constant-offset and scaled-index 415 // addressing. Update the address state and move on to examining the base. 416 AM.IndexReg = IndexReg; 417 AM.Scale = Scale; 418 AM.Disp = (uint32_t)Disp; 419 return X86SelectAddress(U->getOperand(0), AM, isCall); 420 unsupported_gep: 421 // Ok, the GEP indices weren't all covered. 422 break; 423 } 424 } 425 426 // Handle constant address. 427 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) { 428 // Can't handle alternate code models yet. 429 if (TM.getCodeModel() != CodeModel::Default && 430 TM.getCodeModel() != CodeModel::Small) 431 return false; 432 433 // RIP-relative addresses can't have additional register operands. 434 if (Subtarget->isPICStyleRIPRel() && 435 (AM.Base.Reg != 0 || AM.IndexReg != 0)) 436 return false; 437 438 // Can't handle TLS yet. 439 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) 440 if (GVar->isThreadLocal()) 441 return false; 442 443 // Set up the basic address. 444 AM.GV = GV; 445 446 if (!isCall && 447 TM.getRelocationModel() == Reloc::PIC_ && 448 !Subtarget->is64Bit()) 449 AM.Base.Reg = getInstrInfo()->getGlobalBaseReg(&MF); 450 451 // Emit an extra load if the ABI requires it. 452 if (Subtarget->GVRequiresExtraLoad(GV, TM, isCall)) { 453 // Check to see if we've already materialized this 454 // value in a register in this block. 455 if (unsigned Reg = LocalValueMap[V]) { 456 AM.Base.Reg = Reg; 457 AM.GV = 0; 458 return true; 459 } 460 461 // Issue load from stub. 462 unsigned Opc = 0; 463 const TargetRegisterClass *RC = NULL; 464 X86AddressMode StubAM; 465 StubAM.Base.Reg = AM.Base.Reg; 466 StubAM.GV = AM.GV; 467 468 if (TLI.getPointerTy() == MVT::i32) { 469 Opc = X86::MOV32rm; 470 RC = X86::GR32RegisterClass; 471 472 if (Subtarget->isPICStyleGOT() && 473 TM.getRelocationModel() == Reloc::PIC_) 474 StubAM.GVOpFlags = X86II::MO_GOT; 475 476 } else { 477 Opc = X86::MOV64rm; 478 RC = X86::GR64RegisterClass; 479 480 if (TM.getRelocationModel() != Reloc::Static) 481 StubAM.GVOpFlags = X86II::MO_GOTPCREL; 482 } 483 484 unsigned ResultReg = createResultReg(RC); 485 addFullAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), StubAM); 486 487 // Now construct the final address. Note that the Disp, Scale, 488 // and Index values may already be set here. 489 AM.Base.Reg = ResultReg; 490 AM.GV = 0; 491 492 // Prevent loading GV stub multiple times in same MBB. 493 LocalValueMap[V] = AM.Base.Reg; 494 } else if (Subtarget->isPICStyleRIPRel()) { 495 // Use rip-relative addressing if we can. 496 AM.Base.Reg = X86::RIP; 497 } 498 499 return true; 500 } 501 502 // If all else fails, try to materialize the value in a register. 503 if (!AM.GV || !Subtarget->isPICStyleRIPRel()) { 504 if (AM.Base.Reg == 0) { 505 AM.Base.Reg = getRegForValue(V); 506 return AM.Base.Reg != 0; 507 } 508 if (AM.IndexReg == 0) { 509 assert(AM.Scale == 1 && "Scale with no index!"); 510 AM.IndexReg = getRegForValue(V); 511 return AM.IndexReg != 0; 512 } 513 } 514 515 return false; 516 } 517 518 /// X86SelectStore - Select and emit code to implement store instructions. 519 bool X86FastISel::X86SelectStore(Instruction* I) { 520 MVT VT; 521 if (!isTypeLegal(I->getOperand(0)->getType(), VT)) 522 return false; 523 524 X86AddressMode AM; 525 if (!X86SelectAddress(I->getOperand(1), AM, false)) 526 return false; 527 528 return X86FastEmitStore(VT, I->getOperand(0), AM); 529 } 530 531 /// X86SelectLoad - Select and emit code to implement load instructions. 532 /// 533 bool X86FastISel::X86SelectLoad(Instruction *I) { 534 MVT VT; 535 if (!isTypeLegal(I->getType(), VT)) 536 return false; 537 538 X86AddressMode AM; 539 if (!X86SelectAddress(I->getOperand(0), AM, false)) 540 return false; 541 542 unsigned ResultReg = 0; 543 if (X86FastEmitLoad(VT, AM, ResultReg)) { 544 UpdateValueMap(I, ResultReg); 545 return true; 546 } 547 return false; 548 } 549 550 static unsigned X86ChooseCmpOpcode(MVT VT) { 551 switch (VT.getSimpleVT()) { 552 default: return 0; 553 case MVT::i8: return X86::CMP8rr; 554 case MVT::i16: return X86::CMP16rr; 555 case MVT::i32: return X86::CMP32rr; 556 case MVT::i64: return X86::CMP64rr; 557 case MVT::f32: return X86::UCOMISSrr; 558 case MVT::f64: return X86::UCOMISDrr; 559 } 560 } 561 562 /// X86ChooseCmpImmediateOpcode - If we have a comparison with RHS as the RHS 563 /// of the comparison, return an opcode that works for the compare (e.g. 564 /// CMP32ri) otherwise return 0. 565 static unsigned X86ChooseCmpImmediateOpcode(MVT VT, ConstantInt *RHSC) { 566 switch (VT.getSimpleVT()) { 567 // Otherwise, we can't fold the immediate into this comparison. 568 default: return 0; 569 case MVT::i8: return X86::CMP8ri; 570 case MVT::i16: return X86::CMP16ri; 571 case MVT::i32: return X86::CMP32ri; 572 case MVT::i64: 573 // 64-bit comparisons are only valid if the immediate fits in a 32-bit sext 574 // field. 575 if ((int)RHSC->getSExtValue() == RHSC->getSExtValue()) 576 return X86::CMP64ri32; 577 return 0; 578 } 579 } 580 581 bool X86FastISel::X86FastEmitCompare(Value *Op0, Value *Op1, MVT VT) { 582 unsigned Op0Reg = getRegForValue(Op0); 583 if (Op0Reg == 0) return false; 584 585 // Handle 'null' like i32/i64 0. 586 if (isa<ConstantPointerNull>(Op1)) 587 Op1 = Constant::getNullValue(TD.getIntPtrType()); 588 589 // We have two options: compare with register or immediate. If the RHS of 590 // the compare is an immediate that we can fold into this compare, use 591 // CMPri, otherwise use CMPrr. 592 if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) { 593 if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT, Op1C)) { 594 BuildMI(MBB, DL, TII.get(CompareImmOpc)).addReg(Op0Reg) 595 .addImm(Op1C->getSExtValue()); 596 return true; 597 } 598 } 599 600 unsigned CompareOpc = X86ChooseCmpOpcode(VT); 601 if (CompareOpc == 0) return false; 602 603 unsigned Op1Reg = getRegForValue(Op1); 604 if (Op1Reg == 0) return false; 605 BuildMI(MBB, DL, TII.get(CompareOpc)).addReg(Op0Reg).addReg(Op1Reg); 606 607 return true; 608 } 609 610 bool X86FastISel::X86SelectCmp(Instruction *I) { 611 CmpInst *CI = cast<CmpInst>(I); 612 613 MVT VT; 614 if (!isTypeLegal(I->getOperand(0)->getType(), VT)) 615 return false; 616 617 unsigned ResultReg = createResultReg(&X86::GR8RegClass); 618 unsigned SetCCOpc; 619 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0. 620 switch (CI->getPredicate()) { 621 case CmpInst::FCMP_OEQ: { 622 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT)) 623 return false; 624 625 unsigned EReg = createResultReg(&X86::GR8RegClass); 626 unsigned NPReg = createResultReg(&X86::GR8RegClass); 627 BuildMI(MBB, DL, TII.get(X86::SETEr), EReg); 628 BuildMI(MBB, DL, TII.get(X86::SETNPr), NPReg); 629 BuildMI(MBB, DL, 630 TII.get(X86::AND8rr), ResultReg).addReg(NPReg).addReg(EReg); 631 UpdateValueMap(I, ResultReg); 632 return true; 633 } 634 case CmpInst::FCMP_UNE: { 635 if (!X86FastEmitCompare(CI->getOperand(0), CI->getOperand(1), VT)) 636 return false; 637 638 unsigned NEReg = createResultReg(&X86::GR8RegClass); 639 unsigned PReg = createResultReg(&X86::GR8RegClass); 640 BuildMI(MBB, DL, TII.get(X86::SETNEr), NEReg); 641 BuildMI(MBB, DL, TII.get(X86::SETPr), PReg); 642 BuildMI(MBB, DL, TII.get(X86::OR8rr), ResultReg).addReg(PReg).addReg(NEReg); 643 UpdateValueMap(I, ResultReg); 644 return true; 645 } 646 case CmpInst::FCMP_OGT: SwapArgs = false; SetCCOpc = X86::SETAr; break; 647 case CmpInst::FCMP_OGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break; 648 case CmpInst::FCMP_OLT: SwapArgs = true; SetCCOpc = X86::SETAr; break; 649 case CmpInst::FCMP_OLE: SwapArgs = true; SetCCOpc = X86::SETAEr; break; 650 case CmpInst::FCMP_ONE: SwapArgs = false; SetCCOpc = X86::SETNEr; break; 651 case CmpInst::FCMP_ORD: SwapArgs = false; SetCCOpc = X86::SETNPr; break; 652 case CmpInst::FCMP_UNO: SwapArgs = false; SetCCOpc = X86::SETPr; break; 653 case CmpInst::FCMP_UEQ: SwapArgs = false; SetCCOpc = X86::SETEr; break; 654 case CmpInst::FCMP_UGT: SwapArgs = true; SetCCOpc = X86::SETBr; break; 655 case CmpInst::FCMP_UGE: SwapArgs = true; SetCCOpc = X86::SETBEr; break; 656 case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break; 657 case CmpInst::FCMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break; 658 659 case CmpInst::ICMP_EQ: SwapArgs = false; SetCCOpc = X86::SETEr; break; 660 case CmpInst::ICMP_NE: SwapArgs = false; SetCCOpc = X86::SETNEr; break; 661 case CmpInst::ICMP_UGT: SwapArgs = false; SetCCOpc = X86::SETAr; break; 662 case CmpInst::ICMP_UGE: SwapArgs = false; SetCCOpc = X86::SETAEr; break; 663 case CmpInst::ICMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break; 664 case CmpInst::ICMP_ULE: SwapArgs = false; SetCCOpc = X86::SETBEr; break; 665 case CmpInst::ICMP_SGT: SwapArgs = false; SetCCOpc = X86::SETGr; break; 666 case CmpInst::ICMP_SGE: SwapArgs = false; SetCCOpc = X86::SETGEr; break; 667 case CmpInst::ICMP_SLT: SwapArgs = false; SetCCOpc = X86::SETLr; break; 668 case CmpInst::ICMP_SLE: SwapArgs = false; SetCCOpc = X86::SETLEr; break; 669 default: 670 return false; 671 } 672 673 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1); 674 if (SwapArgs) 675 std::swap(Op0, Op1); 676 677 // Emit a compare of Op0/Op1. 678 if (!X86FastEmitCompare(Op0, Op1, VT)) 679 return false; 680 681 BuildMI(MBB, DL, TII.get(SetCCOpc), ResultReg); 682 UpdateValueMap(I, ResultReg); 683 return true; 684 } 685 686 bool X86FastISel::X86SelectZExt(Instruction *I) { 687 // Handle zero-extension from i1 to i8, which is common. 688 if (I->getType() == Type::Int8Ty && 689 I->getOperand(0)->getType() == Type::Int1Ty) { 690 unsigned ResultReg = getRegForValue(I->getOperand(0)); 691 if (ResultReg == 0) return false; 692 // Set the high bits to zero. 693 ResultReg = FastEmitZExtFromI1(MVT::i8, ResultReg); 694 if (ResultReg == 0) return false; 695 UpdateValueMap(I, ResultReg); 696 return true; 697 } 698 699 return false; 700 } 701 702 703 bool X86FastISel::X86SelectBranch(Instruction *I) { 704 // Unconditional branches are selected by tablegen-generated code. 705 // Handle a conditional branch. 706 BranchInst *BI = cast<BranchInst>(I); 707 MachineBasicBlock *TrueMBB = MBBMap[BI->getSuccessor(0)]; 708 MachineBasicBlock *FalseMBB = MBBMap[BI->getSuccessor(1)]; 709 710 // Fold the common case of a conditional branch with a comparison. 711 if (CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) { 712 if (CI->hasOneUse()) { 713 MVT VT = TLI.getValueType(CI->getOperand(0)->getType()); 714 715 // Try to take advantage of fallthrough opportunities. 716 CmpInst::Predicate Predicate = CI->getPredicate(); 717 if (MBB->isLayoutSuccessor(TrueMBB)) { 718 std::swap(TrueMBB, FalseMBB); 719 Predicate = CmpInst::getInversePredicate(Predicate); 720 } 721 722 bool SwapArgs; // false -> compare Op0, Op1. true -> compare Op1, Op0. 723 unsigned BranchOpc; // Opcode to jump on, e.g. "X86::JA" 724 725 switch (Predicate) { 726 case CmpInst::FCMP_OEQ: 727 std::swap(TrueMBB, FalseMBB); 728 Predicate = CmpInst::FCMP_UNE; 729 // FALL THROUGH 730 case CmpInst::FCMP_UNE: SwapArgs = false; BranchOpc = X86::JNE; break; 731 case CmpInst::FCMP_OGT: SwapArgs = false; BranchOpc = X86::JA; break; 732 case CmpInst::FCMP_OGE: SwapArgs = false; BranchOpc = X86::JAE; break; 733 case CmpInst::FCMP_OLT: SwapArgs = true; BranchOpc = X86::JA; break; 734 case CmpInst::FCMP_OLE: SwapArgs = true; BranchOpc = X86::JAE; break; 735 case CmpInst::FCMP_ONE: SwapArgs = false; BranchOpc = X86::JNE; break; 736 case CmpInst::FCMP_ORD: SwapArgs = false; BranchOpc = X86::JNP; break; 737 case CmpInst::FCMP_UNO: SwapArgs = false; BranchOpc = X86::JP; break; 738 case CmpInst::FCMP_UEQ: SwapArgs = false; BranchOpc = X86::JE; break; 739 case CmpInst::FCMP_UGT: SwapArgs = true; BranchOpc = X86::JB; break; 740 case CmpInst::FCMP_UGE: SwapArgs = true; BranchOpc = X86::JBE; break; 741 case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break; 742 case CmpInst::FCMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break; 743 744 case CmpInst::ICMP_EQ: SwapArgs = false; BranchOpc = X86::JE; break; 745 case CmpInst::ICMP_NE: SwapArgs = false; BranchOpc = X86::JNE; break; 746 case CmpInst::ICMP_UGT: SwapArgs = false; BranchOpc = X86::JA; break; 747 case CmpInst::ICMP_UGE: SwapArgs = false; BranchOpc = X86::JAE; break; 748 case CmpInst::ICMP_ULT: SwapArgs = false; BranchOpc = X86::JB; break; 749 case CmpInst::ICMP_ULE: SwapArgs = false; BranchOpc = X86::JBE; break; 750 case CmpInst::ICMP_SGT: SwapArgs = false; BranchOpc = X86::JG; break; 751 case CmpInst::ICMP_SGE: SwapArgs = false; BranchOpc = X86::JGE; break; 752 case CmpInst::ICMP_SLT: SwapArgs = false; BranchOpc = X86::JL; break; 753 case CmpInst::ICMP_SLE: SwapArgs = false; BranchOpc = X86::JLE; break; 754 default: 755 return false; 756 } 757 758 Value *Op0 = CI->getOperand(0), *Op1 = CI->getOperand(1); 759 if (SwapArgs) 760 std::swap(Op0, Op1); 761 762 // Emit a compare of the LHS and RHS, setting the flags. 763 if (!X86FastEmitCompare(Op0, Op1, VT)) 764 return false; 765 766 BuildMI(MBB, DL, TII.get(BranchOpc)).addMBB(TrueMBB); 767 768 if (Predicate == CmpInst::FCMP_UNE) { 769 // X86 requires a second branch to handle UNE (and OEQ, 770 // which is mapped to UNE above). 771 BuildMI(MBB, DL, TII.get(X86::JP)).addMBB(TrueMBB); 772 } 773 774 FastEmitBranch(FalseMBB); 775 MBB->addSuccessor(TrueMBB); 776 return true; 777 } 778 } else if (ExtractValueInst *EI = 779 dyn_cast<ExtractValueInst>(BI->getCondition())) { 780 // Check to see if the branch instruction is from an "arithmetic with 781 // overflow" intrinsic. The main way these intrinsics are used is: 782 // 783 // %t = call { i32, i1 } @llvm.sadd.with.overflow.i32(i32 %v1, i32 %v2) 784 // %sum = extractvalue { i32, i1 } %t, 0 785 // %obit = extractvalue { i32, i1 } %t, 1 786 // br i1 %obit, label %overflow, label %normal 787 // 788 // The %sum and %obit are converted in an ADD and a SETO/SETB before 789 // reaching the branch. Therefore, we search backwards through the MBB 790 // looking for the SETO/SETB instruction. If an instruction modifies the 791 // EFLAGS register before we reach the SETO/SETB instruction, then we can't 792 // convert the branch into a JO/JB instruction. 793 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(EI->getAggregateOperand())){ 794 if (CI->getIntrinsicID() == Intrinsic::sadd_with_overflow || 795 CI->getIntrinsicID() == Intrinsic::uadd_with_overflow) { 796 const MachineInstr *SetMI = 0; 797 unsigned Reg = lookUpRegForValue(EI); 798 799 for (MachineBasicBlock::const_reverse_iterator 800 RI = MBB->rbegin(), RE = MBB->rend(); RI != RE; ++RI) { 801 const MachineInstr &MI = *RI; 802 803 if (MI.modifiesRegister(Reg)) { 804 unsigned Src, Dst, SrcSR, DstSR; 805 806 if (getInstrInfo()->isMoveInstr(MI, Src, Dst, SrcSR, DstSR)) { 807 Reg = Src; 808 continue; 809 } 810 811 SetMI = &MI; 812 break; 813 } 814 815 const TargetInstrDesc &TID = MI.getDesc(); 816 if (TID.hasUnmodeledSideEffects() || 817 TID.hasImplicitDefOfPhysReg(X86::EFLAGS)) 818 break; 819 } 820 821 if (SetMI) { 822 unsigned OpCode = SetMI->getOpcode(); 823 824 if (OpCode == X86::SETOr || OpCode == X86::SETBr) { 825 BuildMI(MBB, DL, TII.get(OpCode == X86::SETOr ? X86::JO : X86::JB)) 826 .addMBB(TrueMBB); 827 FastEmitBranch(FalseMBB); 828 MBB->addSuccessor(TrueMBB); 829 return true; 830 } 831 } 832 } 833 } 834 } 835 836 // Otherwise do a clumsy setcc and re-test it. 837 unsigned OpReg = getRegForValue(BI->getCondition()); 838 if (OpReg == 0) return false; 839 840 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(OpReg).addReg(OpReg); 841 BuildMI(MBB, DL, TII.get(X86::JNE)).addMBB(TrueMBB); 842 FastEmitBranch(FalseMBB); 843 MBB->addSuccessor(TrueMBB); 844 return true; 845 } 846 847 bool X86FastISel::X86SelectShift(Instruction *I) { 848 unsigned CReg = 0, OpReg = 0, OpImm = 0; 849 const TargetRegisterClass *RC = NULL; 850 if (I->getType() == Type::Int8Ty) { 851 CReg = X86::CL; 852 RC = &X86::GR8RegClass; 853 switch (I->getOpcode()) { 854 case Instruction::LShr: OpReg = X86::SHR8rCL; OpImm = X86::SHR8ri; break; 855 case Instruction::AShr: OpReg = X86::SAR8rCL; OpImm = X86::SAR8ri; break; 856 case Instruction::Shl: OpReg = X86::SHL8rCL; OpImm = X86::SHL8ri; break; 857 default: return false; 858 } 859 } else if (I->getType() == Type::Int16Ty) { 860 CReg = X86::CX; 861 RC = &X86::GR16RegClass; 862 switch (I->getOpcode()) { 863 case Instruction::LShr: OpReg = X86::SHR16rCL; OpImm = X86::SHR16ri; break; 864 case Instruction::AShr: OpReg = X86::SAR16rCL; OpImm = X86::SAR16ri; break; 865 case Instruction::Shl: OpReg = X86::SHL16rCL; OpImm = X86::SHL16ri; break; 866 default: return false; 867 } 868 } else if (I->getType() == Type::Int32Ty) { 869 CReg = X86::ECX; 870 RC = &X86::GR32RegClass; 871 switch (I->getOpcode()) { 872 case Instruction::LShr: OpReg = X86::SHR32rCL; OpImm = X86::SHR32ri; break; 873 case Instruction::AShr: OpReg = X86::SAR32rCL; OpImm = X86::SAR32ri; break; 874 case Instruction::Shl: OpReg = X86::SHL32rCL; OpImm = X86::SHL32ri; break; 875 default: return false; 876 } 877 } else if (I->getType() == Type::Int64Ty) { 878 CReg = X86::RCX; 879 RC = &X86::GR64RegClass; 880 switch (I->getOpcode()) { 881 case Instruction::LShr: OpReg = X86::SHR64rCL; OpImm = X86::SHR64ri; break; 882 case Instruction::AShr: OpReg = X86::SAR64rCL; OpImm = X86::SAR64ri; break; 883 case Instruction::Shl: OpReg = X86::SHL64rCL; OpImm = X86::SHL64ri; break; 884 default: return false; 885 } 886 } else { 887 return false; 888 } 889 890 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true); 891 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT)) 892 return false; 893 894 unsigned Op0Reg = getRegForValue(I->getOperand(0)); 895 if (Op0Reg == 0) return false; 896 897 // Fold immediate in shl(x,3). 898 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) { 899 unsigned ResultReg = createResultReg(RC); 900 BuildMI(MBB, DL, TII.get(OpImm), 901 ResultReg).addReg(Op0Reg).addImm(CI->getZExtValue() & 0xff); 902 UpdateValueMap(I, ResultReg); 903 return true; 904 } 905 906 unsigned Op1Reg = getRegForValue(I->getOperand(1)); 907 if (Op1Reg == 0) return false; 908 TII.copyRegToReg(*MBB, MBB->end(), CReg, Op1Reg, RC, RC); 909 910 // The shift instruction uses X86::CL. If we defined a super-register 911 // of X86::CL, emit an EXTRACT_SUBREG to precisely describe what 912 // we're doing here. 913 if (CReg != X86::CL) 914 BuildMI(MBB, DL, TII.get(TargetInstrInfo::EXTRACT_SUBREG), X86::CL) 915 .addReg(CReg).addImm(X86::SUBREG_8BIT); 916 917 unsigned ResultReg = createResultReg(RC); 918 BuildMI(MBB, DL, TII.get(OpReg), ResultReg).addReg(Op0Reg); 919 UpdateValueMap(I, ResultReg); 920 return true; 921 } 922 923 bool X86FastISel::X86SelectSelect(Instruction *I) { 924 MVT VT = TLI.getValueType(I->getType(), /*HandleUnknown=*/true); 925 if (VT == MVT::Other || !isTypeLegal(I->getType(), VT)) 926 return false; 927 928 unsigned Opc = 0; 929 const TargetRegisterClass *RC = NULL; 930 if (VT.getSimpleVT() == MVT::i16) { 931 Opc = X86::CMOVE16rr; 932 RC = &X86::GR16RegClass; 933 } else if (VT.getSimpleVT() == MVT::i32) { 934 Opc = X86::CMOVE32rr; 935 RC = &X86::GR32RegClass; 936 } else if (VT.getSimpleVT() == MVT::i64) { 937 Opc = X86::CMOVE64rr; 938 RC = &X86::GR64RegClass; 939 } else { 940 return false; 941 } 942 943 unsigned Op0Reg = getRegForValue(I->getOperand(0)); 944 if (Op0Reg == 0) return false; 945 unsigned Op1Reg = getRegForValue(I->getOperand(1)); 946 if (Op1Reg == 0) return false; 947 unsigned Op2Reg = getRegForValue(I->getOperand(2)); 948 if (Op2Reg == 0) return false; 949 950 BuildMI(MBB, DL, TII.get(X86::TEST8rr)).addReg(Op0Reg).addReg(Op0Reg); 951 unsigned ResultReg = createResultReg(RC); 952 BuildMI(MBB, DL, TII.get(Opc), ResultReg).addReg(Op1Reg).addReg(Op2Reg); 953 UpdateValueMap(I, ResultReg); 954 return true; 955 } 956 957 bool X86FastISel::X86SelectFPExt(Instruction *I) { 958 // fpext from float to double. 959 if (Subtarget->hasSSE2() && I->getType() == Type::DoubleTy) { 960 Value *V = I->getOperand(0); 961 if (V->getType() == Type::FloatTy) { 962 unsigned OpReg = getRegForValue(V); 963 if (OpReg == 0) return false; 964 unsigned ResultReg = createResultReg(X86::FR64RegisterClass); 965 BuildMI(MBB, DL, TII.get(X86::CVTSS2SDrr), ResultReg).addReg(OpReg); 966 UpdateValueMap(I, ResultReg); 967 return true; 968 } 969 } 970 971 return false; 972 } 973 974 bool X86FastISel::X86SelectFPTrunc(Instruction *I) { 975 if (Subtarget->hasSSE2()) { 976 if (I->getType() == Type::FloatTy) { 977 Value *V = I->getOperand(0); 978 if (V->getType() == Type::DoubleTy) { 979 unsigned OpReg = getRegForValue(V); 980 if (OpReg == 0) return false; 981 unsigned ResultReg = createResultReg(X86::FR32RegisterClass); 982 BuildMI(MBB, DL, TII.get(X86::CVTSD2SSrr), ResultReg).addReg(OpReg); 983 UpdateValueMap(I, ResultReg); 984 return true; 985 } 986 } 987 } 988 989 return false; 990 } 991 992 bool X86FastISel::X86SelectTrunc(Instruction *I) { 993 if (Subtarget->is64Bit()) 994 // All other cases should be handled by the tblgen generated code. 995 return false; 996 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); 997 MVT DstVT = TLI.getValueType(I->getType()); 998 999 // This code only handles truncation to byte right now. 1000 if (DstVT != MVT::i8 && DstVT != MVT::i1) 1001 // All other cases should be handled by the tblgen generated code. 1002 return false; 1003 if (SrcVT != MVT::i16 && SrcVT != MVT::i32) 1004 // All other cases should be handled by the tblgen generated code. 1005 return false; 1006 1007 unsigned InputReg = getRegForValue(I->getOperand(0)); 1008 if (!InputReg) 1009 // Unhandled operand. Halt "fast" selection and bail. 1010 return false; 1011 1012 // First issue a copy to GR16_ABCD or GR32_ABCD. 1013 unsigned CopyOpc = (SrcVT == MVT::i16) ? X86::MOV16rr : X86::MOV32rr; 1014 const TargetRegisterClass *CopyRC = (SrcVT == MVT::i16) 1015 ? X86::GR16_ABCDRegisterClass : X86::GR32_ABCDRegisterClass; 1016 unsigned CopyReg = createResultReg(CopyRC); 1017 BuildMI(MBB, DL, TII.get(CopyOpc), CopyReg).addReg(InputReg); 1018 1019 // Then issue an extract_subreg. 1020 unsigned ResultReg = FastEmitInst_extractsubreg(MVT::i8, 1021 CopyReg, X86::SUBREG_8BIT); 1022 if (!ResultReg) 1023 return false; 1024 1025 UpdateValueMap(I, ResultReg); 1026 return true; 1027 } 1028 1029 bool X86FastISel::X86SelectExtractValue(Instruction *I) { 1030 ExtractValueInst *EI = cast<ExtractValueInst>(I); 1031 Value *Agg = EI->getAggregateOperand(); 1032 1033 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Agg)) { 1034 switch (CI->getIntrinsicID()) { 1035 default: break; 1036 case Intrinsic::sadd_with_overflow: 1037 case Intrinsic::uadd_with_overflow: 1038 // Cheat a little. We know that the registers for "add" and "seto" are 1039 // allocated sequentially. However, we only keep track of the register 1040 // for "add" in the value map. Use extractvalue's index to get the 1041 // correct register for "seto". 1042 UpdateValueMap(I, lookUpRegForValue(Agg) + *EI->idx_begin()); 1043 return true; 1044 } 1045 } 1046 1047 return false; 1048 } 1049 1050 bool X86FastISel::X86VisitIntrinsicCall(IntrinsicInst &I) { 1051 // FIXME: Handle more intrinsics. 1052 switch (I.getIntrinsicID()) { 1053 default: return false; 1054 case Intrinsic::sadd_with_overflow: 1055 case Intrinsic::uadd_with_overflow: { 1056 // Replace "add with overflow" intrinsics with an "add" instruction followed 1057 // by a seto/setc instruction. Later on, when the "extractvalue" 1058 // instructions are encountered, we use the fact that two registers were 1059 // created sequentially to get the correct registers for the "sum" and the 1060 // "overflow bit". 1061 const Function *Callee = I.getCalledFunction(); 1062 const Type *RetTy = 1063 cast<StructType>(Callee->getReturnType())->getTypeAtIndex(unsigned(0)); 1064 1065 MVT VT; 1066 if (!isTypeLegal(RetTy, VT)) 1067 return false; 1068 1069 Value *Op1 = I.getOperand(1); 1070 Value *Op2 = I.getOperand(2); 1071 unsigned Reg1 = getRegForValue(Op1); 1072 unsigned Reg2 = getRegForValue(Op2); 1073 1074 if (Reg1 == 0 || Reg2 == 0) 1075 // FIXME: Handle values *not* in registers. 1076 return false; 1077 1078 unsigned OpC = 0; 1079 if (VT == MVT::i32) 1080 OpC = X86::ADD32rr; 1081 else if (VT == MVT::i64) 1082 OpC = X86::ADD64rr; 1083 else 1084 return false; 1085 1086 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT)); 1087 BuildMI(MBB, DL, TII.get(OpC), ResultReg).addReg(Reg1).addReg(Reg2); 1088 unsigned DestReg1 = UpdateValueMap(&I, ResultReg); 1089 1090 // If the add with overflow is an intra-block value then we just want to 1091 // create temporaries for it like normal. If it is a cross-block value then 1092 // UpdateValueMap will return the cross-block register used. Since we 1093 // *really* want the value to be live in the register pair known by 1094 // UpdateValueMap, we have to use DestReg1+1 as the destination register in 1095 // the cross block case. In the non-cross-block case, we should just make 1096 // another register for the value. 1097 if (DestReg1 != ResultReg) 1098 ResultReg = DestReg1+1; 1099 else 1100 ResultReg = createResultReg(TLI.getRegClassFor(MVT::i8)); 1101 1102 unsigned Opc = X86::SETBr; 1103 if (I.getIntrinsicID() == Intrinsic::sadd_with_overflow) 1104 Opc = X86::SETOr; 1105 BuildMI(MBB, DL, TII.get(Opc), ResultReg); 1106 return true; 1107 } 1108 } 1109 } 1110 1111 bool X86FastISel::X86SelectCall(Instruction *I) { 1112 CallInst *CI = cast<CallInst>(I); 1113 Value *Callee = I->getOperand(0); 1114 1115 // Can't handle inline asm yet. 1116 if (isa<InlineAsm>(Callee)) 1117 return false; 1118 1119 // Handle intrinsic calls. 1120 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI)) 1121 return X86VisitIntrinsicCall(*II); 1122 1123 // Handle only C and fastcc calling conventions for now. 1124 CallSite CS(CI); 1125 unsigned CC = CS.getCallingConv(); 1126 if (CC != CallingConv::C && 1127 CC != CallingConv::Fast && 1128 CC != CallingConv::X86_FastCall) 1129 return false; 1130 1131 // On X86, -tailcallopt changes the fastcc ABI. FastISel doesn't 1132 // handle this for now. 1133 if (CC == CallingConv::Fast && PerformTailCallOpt) 1134 return false; 1135 1136 // Let SDISel handle vararg functions. 1137 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); 1138 const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); 1139 if (FTy->isVarArg()) 1140 return false; 1141 1142 // Handle *simple* calls for now. 1143 const Type *RetTy = CS.getType(); 1144 MVT RetVT; 1145 if (RetTy == Type::VoidTy) 1146 RetVT = MVT::isVoid; 1147 else if (!isTypeLegal(RetTy, RetVT, true)) 1148 return false; 1149 1150 // Materialize callee address in a register. FIXME: GV address can be 1151 // handled with a CALLpcrel32 instead. 1152 X86AddressMode CalleeAM; 1153 if (!X86SelectAddress(Callee, CalleeAM, true)) 1154 return false; 1155 unsigned CalleeOp = 0; 1156 GlobalValue *GV = 0; 1157 if (CalleeAM.GV != 0) { 1158 GV = CalleeAM.GV; 1159 } else if (CalleeAM.Base.Reg != 0) { 1160 CalleeOp = CalleeAM.Base.Reg; 1161 } else 1162 return false; 1163 1164 // Allow calls which produce i1 results. 1165 bool AndToI1 = false; 1166 if (RetVT == MVT::i1) { 1167 RetVT = MVT::i8; 1168 AndToI1 = true; 1169 } 1170 1171 // Deal with call operands first. 1172 SmallVector<Value*, 8> ArgVals; 1173 SmallVector<unsigned, 8> Args; 1174 SmallVector<MVT, 8> ArgVTs; 1175 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags; 1176 Args.reserve(CS.arg_size()); 1177 ArgVals.reserve(CS.arg_size()); 1178 ArgVTs.reserve(CS.arg_size()); 1179 ArgFlags.reserve(CS.arg_size()); 1180 for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); 1181 i != e; ++i) { 1182 unsigned Arg = getRegForValue(*i); 1183 if (Arg == 0) 1184 return false; 1185 ISD::ArgFlagsTy Flags; 1186 unsigned AttrInd = i - CS.arg_begin() + 1; 1187 if (CS.paramHasAttr(AttrInd, Attribute::SExt)) 1188 Flags.setSExt(); 1189 if (CS.paramHasAttr(AttrInd, Attribute::ZExt)) 1190 Flags.setZExt(); 1191 1192 // FIXME: Only handle *easy* calls for now. 1193 if (CS.paramHasAttr(AttrInd, Attribute::InReg) || 1194 CS.paramHasAttr(AttrInd, Attribute::StructRet) || 1195 CS.paramHasAttr(AttrInd, Attribute::Nest) || 1196 CS.paramHasAttr(AttrInd, Attribute::ByVal)) 1197 return false; 1198 1199 const Type *ArgTy = (*i)->getType(); 1200 MVT ArgVT; 1201 if (!isTypeLegal(ArgTy, ArgVT)) 1202 return false; 1203 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy); 1204 Flags.setOrigAlign(OriginalAlignment); 1205 1206 Args.push_back(Arg); 1207 ArgVals.push_back(*i); 1208 ArgVTs.push_back(ArgVT); 1209 ArgFlags.push_back(Flags); 1210 } 1211 1212 // Analyze operands of the call, assigning locations to each operand. 1213 SmallVector<CCValAssign, 16> ArgLocs; 1214 CCState CCInfo(CC, false, TM, ArgLocs); 1215 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC)); 1216 1217 // Get a count of how many bytes are to be pushed on the stack. 1218 unsigned NumBytes = CCInfo.getNextStackOffset(); 1219 1220 // Issue CALLSEQ_START 1221 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode(); 1222 BuildMI(MBB, DL, TII.get(AdjStackDown)).addImm(NumBytes); 1223 1224 // Process argument: walk the register/memloc assignments, inserting 1225 // copies / loads. 1226 SmallVector<unsigned, 4> RegArgs; 1227 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { 1228 CCValAssign &VA = ArgLocs[i]; 1229 unsigned Arg = Args[VA.getValNo()]; 1230 MVT ArgVT = ArgVTs[VA.getValNo()]; 1231 1232 // Promote the value if needed. 1233 switch (VA.getLocInfo()) { 1234 default: assert(0 && "Unknown loc info!"); 1235 case CCValAssign::Full: break; 1236 case CCValAssign::SExt: { 1237 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), 1238 Arg, ArgVT, Arg); 1239 assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted; 1240 Emitted = true; 1241 ArgVT = VA.getLocVT(); 1242 break; 1243 } 1244 case CCValAssign::ZExt: { 1245 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), 1246 Arg, ArgVT, Arg); 1247 assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted; 1248 Emitted = true; 1249 ArgVT = VA.getLocVT(); 1250 break; 1251 } 1252 case CCValAssign::AExt: { 1253 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(), 1254 Arg, ArgVT, Arg); 1255 if (!Emitted) 1256 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), 1257 Arg, ArgVT, Arg); 1258 if (!Emitted) 1259 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), 1260 Arg, ArgVT, Arg); 1261 1262 assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted; 1263 ArgVT = VA.getLocVT(); 1264 break; 1265 } 1266 } 1267 1268 if (VA.isRegLoc()) { 1269 TargetRegisterClass* RC = TLI.getRegClassFor(ArgVT); 1270 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), VA.getLocReg(), 1271 Arg, RC, RC); 1272 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted; 1273 Emitted = true; 1274 RegArgs.push_back(VA.getLocReg()); 1275 } else { 1276 unsigned LocMemOffset = VA.getLocMemOffset(); 1277 X86AddressMode AM; 1278 AM.Base.Reg = StackPtr; 1279 AM.Disp = LocMemOffset; 1280 Value *ArgVal = ArgVals[VA.getValNo()]; 1281 1282 // If this is a really simple value, emit this with the Value* version of 1283 // X86FastEmitStore. If it isn't simple, we don't want to do this, as it 1284 // can cause us to reevaluate the argument. 1285 if (isa<ConstantInt>(ArgVal) || isa<ConstantPointerNull>(ArgVal)) 1286 X86FastEmitStore(ArgVT, ArgVal, AM); 1287 else 1288 X86FastEmitStore(ArgVT, Arg, AM); 1289 } 1290 } 1291 1292 // ELF / PIC requires GOT in the EBX register before function calls via PLT 1293 // GOT pointer. 1294 if (!Subtarget->is64Bit() && 1295 TM.getRelocationModel() == Reloc::PIC_ && 1296 Subtarget->isPICStyleGOT()) { 1297 TargetRegisterClass *RC = X86::GR32RegisterClass; 1298 unsigned Base = getInstrInfo()->getGlobalBaseReg(&MF); 1299 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), X86::EBX, Base, RC, RC); 1300 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted; 1301 Emitted = true; 1302 } 1303 1304 // Issue the call. 1305 unsigned CallOpc = CalleeOp 1306 ? (Subtarget->is64Bit() ? X86::CALL64r : X86::CALL32r) 1307 : (Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32); 1308 MachineInstrBuilder MIB = CalleeOp 1309 ? BuildMI(MBB, DL, TII.get(CallOpc)).addReg(CalleeOp) 1310 : BuildMI(MBB, DL, TII.get(CallOpc)).addGlobalAddress(GV); 1311 1312 // Add an implicit use GOT pointer in EBX. 1313 if (!Subtarget->is64Bit() && 1314 TM.getRelocationModel() == Reloc::PIC_ && 1315 Subtarget->isPICStyleGOT()) 1316 MIB.addReg(X86::EBX); 1317 1318 // Add implicit physical register uses to the call. 1319 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i) 1320 MIB.addReg(RegArgs[i]); 1321 1322 // Issue CALLSEQ_END 1323 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode(); 1324 BuildMI(MBB, DL, TII.get(AdjStackUp)).addImm(NumBytes).addImm(0); 1325 1326 // Now handle call return value (if any). 1327 if (RetVT.getSimpleVT() != MVT::isVoid) { 1328 SmallVector<CCValAssign, 16> RVLocs; 1329 CCState CCInfo(CC, false, TM, RVLocs); 1330 CCInfo.AnalyzeCallResult(RetVT, RetCC_X86); 1331 1332 // Copy all of the result registers out of their specified physreg. 1333 assert(RVLocs.size() == 1 && "Can't handle multi-value calls!"); 1334 MVT CopyVT = RVLocs[0].getValVT(); 1335 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT); 1336 TargetRegisterClass *SrcRC = DstRC; 1337 1338 // If this is a call to a function that returns an fp value on the x87 fp 1339 // stack, but where we prefer to use the value in xmm registers, copy it 1340 // out as F80 and use a truncate to move it from fp stack reg to xmm reg. 1341 if ((RVLocs[0].getLocReg() == X86::ST0 || 1342 RVLocs[0].getLocReg() == X86::ST1) && 1343 isScalarFPTypeInSSEReg(RVLocs[0].getValVT())) { 1344 CopyVT = MVT::f80; 1345 SrcRC = X86::RSTRegisterClass; 1346 DstRC = X86::RFP80RegisterClass; 1347 } 1348 1349 unsigned ResultReg = createResultReg(DstRC); 1350 bool Emitted = TII.copyRegToReg(*MBB, MBB->end(), ResultReg, 1351 RVLocs[0].getLocReg(), DstRC, SrcRC); 1352 assert(Emitted && "Failed to emit a copy instruction!"); Emitted=Emitted; 1353 Emitted = true; 1354 if (CopyVT != RVLocs[0].getValVT()) { 1355 // Round the F80 the right size, which also moves to the appropriate xmm 1356 // register. This is accomplished by storing the F80 value in memory and 1357 // then loading it back. Ewww... 1358 MVT ResVT = RVLocs[0].getValVT(); 1359 unsigned Opc = ResVT == MVT::f32 ? X86::ST_Fp80m32 : X86::ST_Fp80m64; 1360 unsigned MemSize = ResVT.getSizeInBits()/8; 1361 int FI = MFI.CreateStackObject(MemSize, MemSize); 1362 addFrameReference(BuildMI(MBB, DL, TII.get(Opc)), FI).addReg(ResultReg); 1363 DstRC = ResVT == MVT::f32 1364 ? X86::FR32RegisterClass : X86::FR64RegisterClass; 1365 Opc = ResVT == MVT::f32 ? X86::MOVSSrm : X86::MOVSDrm; 1366 ResultReg = createResultReg(DstRC); 1367 addFrameReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), FI); 1368 } 1369 1370 if (AndToI1) { 1371 // Mask out all but lowest bit for some call which produces an i1. 1372 unsigned AndResult = createResultReg(X86::GR8RegisterClass); 1373 BuildMI(MBB, DL, 1374 TII.get(X86::AND8ri), AndResult).addReg(ResultReg).addImm(1); 1375 ResultReg = AndResult; 1376 } 1377 1378 UpdateValueMap(I, ResultReg); 1379 } 1380 1381 return true; 1382 } 1383 1384 1385 bool 1386 X86FastISel::TargetSelectInstruction(Instruction *I) { 1387 switch (I->getOpcode()) { 1388 default: break; 1389 case Instruction::Load: 1390 return X86SelectLoad(I); 1391 case Instruction::Store: 1392 return X86SelectStore(I); 1393 case Instruction::ICmp: 1394 case Instruction::FCmp: 1395 return X86SelectCmp(I); 1396 case Instruction::ZExt: 1397 return X86SelectZExt(I); 1398 case Instruction::Br: 1399 return X86SelectBranch(I); 1400 case Instruction::Call: 1401 return X86SelectCall(I); 1402 case Instruction::LShr: 1403 case Instruction::AShr: 1404 case Instruction::Shl: 1405 return X86SelectShift(I); 1406 case Instruction::Select: 1407 return X86SelectSelect(I); 1408 case Instruction::Trunc: 1409 return X86SelectTrunc(I); 1410 case Instruction::FPExt: 1411 return X86SelectFPExt(I); 1412 case Instruction::FPTrunc: 1413 return X86SelectFPTrunc(I); 1414 case Instruction::ExtractValue: 1415 return X86SelectExtractValue(I); 1416 case Instruction::IntToPtr: // Deliberate fall-through. 1417 case Instruction::PtrToInt: { 1418 MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); 1419 MVT DstVT = TLI.getValueType(I->getType()); 1420 if (DstVT.bitsGT(SrcVT)) 1421 return X86SelectZExt(I); 1422 if (DstVT.bitsLT(SrcVT)) 1423 return X86SelectTrunc(I); 1424 unsigned Reg = getRegForValue(I->getOperand(0)); 1425 if (Reg == 0) return false; 1426 UpdateValueMap(I, Reg); 1427 return true; 1428 } 1429 } 1430 1431 return false; 1432 } 1433 1434 unsigned X86FastISel::TargetMaterializeConstant(Constant *C) { 1435 MVT VT; 1436 if (!isTypeLegal(C->getType(), VT)) 1437 return false; 1438 1439 // Get opcode and regclass of the output for the given load instruction. 1440 unsigned Opc = 0; 1441 const TargetRegisterClass *RC = NULL; 1442 switch (VT.getSimpleVT()) { 1443 default: return false; 1444 case MVT::i8: 1445 Opc = X86::MOV8rm; 1446 RC = X86::GR8RegisterClass; 1447 break; 1448 case MVT::i16: 1449 Opc = X86::MOV16rm; 1450 RC = X86::GR16RegisterClass; 1451 break; 1452 case MVT::i32: 1453 Opc = X86::MOV32rm; 1454 RC = X86::GR32RegisterClass; 1455 break; 1456 case MVT::i64: 1457 // Must be in x86-64 mode. 1458 Opc = X86::MOV64rm; 1459 RC = X86::GR64RegisterClass; 1460 break; 1461 case MVT::f32: 1462 if (Subtarget->hasSSE1()) { 1463 Opc = X86::MOVSSrm; 1464 RC = X86::FR32RegisterClass; 1465 } else { 1466 Opc = X86::LD_Fp32m; 1467 RC = X86::RFP32RegisterClass; 1468 } 1469 break; 1470 case MVT::f64: 1471 if (Subtarget->hasSSE2()) { 1472 Opc = X86::MOVSDrm; 1473 RC = X86::FR64RegisterClass; 1474 } else { 1475 Opc = X86::LD_Fp64m; 1476 RC = X86::RFP64RegisterClass; 1477 } 1478 break; 1479 case MVT::f80: 1480 // No f80 support yet. 1481 return false; 1482 } 1483 1484 // Materialize addresses with LEA instructions. 1485 if (isa<GlobalValue>(C)) { 1486 X86AddressMode AM; 1487 if (X86SelectAddress(C, AM, false)) { 1488 if (TLI.getPointerTy() == MVT::i32) 1489 Opc = X86::LEA32r; 1490 else 1491 Opc = X86::LEA64r; 1492 unsigned ResultReg = createResultReg(RC); 1493 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM); 1494 return ResultReg; 1495 } 1496 return 0; 1497 } 1498 1499 // MachineConstantPool wants an explicit alignment. 1500 unsigned Align = TD.getPrefTypeAlignment(C->getType()); 1501 if (Align == 0) { 1502 // Alignment of vector types. FIXME! 1503 Align = TD.getTypeAllocSize(C->getType()); 1504 } 1505 1506 // x86-32 PIC requires a PIC base register for constant pools. 1507 unsigned PICBase = 0; 1508 unsigned char OpFlag = 0; 1509 if (TM.getRelocationModel() == Reloc::PIC_) { 1510 if (Subtarget->isPICStyleStub()) { 1511 OpFlag = X86II::MO_PIC_BASE_OFFSET; 1512 PICBase = getInstrInfo()->getGlobalBaseReg(&MF); 1513 } else if (Subtarget->isPICStyleGOT()) { 1514 OpFlag = X86II::MO_GOTOFF; 1515 PICBase = getInstrInfo()->getGlobalBaseReg(&MF); 1516 } 1517 } 1518 1519 // Create the load from the constant pool. 1520 unsigned MCPOffset = MCP.getConstantPoolIndex(C, Align); 1521 unsigned ResultReg = createResultReg(RC); 1522 addConstantPoolReference(BuildMI(MBB, DL, TII.get(Opc), ResultReg), 1523 MCPOffset, PICBase, OpFlag); 1524 1525 return ResultReg; 1526 } 1527 1528 unsigned X86FastISel::TargetMaterializeAlloca(AllocaInst *C) { 1529 // Fail on dynamic allocas. At this point, getRegForValue has already 1530 // checked its CSE maps, so if we're here trying to handle a dynamic 1531 // alloca, we're not going to succeed. X86SelectAddress has a 1532 // check for dynamic allocas, because it's called directly from 1533 // various places, but TargetMaterializeAlloca also needs a check 1534 // in order to avoid recursion between getRegForValue, 1535 // X86SelectAddrss, and TargetMaterializeAlloca. 1536 if (!StaticAllocaMap.count(C)) 1537 return 0; 1538 1539 X86AddressMode AM; 1540 if (!X86SelectAddress(C, AM, false)) 1541 return 0; 1542 unsigned Opc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r; 1543 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy()); 1544 unsigned ResultReg = createResultReg(RC); 1545 addLeaAddress(BuildMI(MBB, DL, TII.get(Opc), ResultReg), AM); 1546 return ResultReg; 1547 } 1548 1549 namespace llvm { 1550 llvm::FastISel *X86::createFastISel(MachineFunction &mf, 1551 MachineModuleInfo *mmi, 1552 DwarfWriter *dw, 1553 DenseMap<const Value *, unsigned> &vm, 1554 DenseMap<const BasicBlock *, MachineBasicBlock *> &bm, 1555 DenseMap<const AllocaInst *, int> &am 1556 #ifndef NDEBUG 1557 , SmallSet<Instruction*, 8> &cil 1558 #endif 1559 ) { 1560 return new X86FastISel(mf, mmi, dw, vm, bm, am 1561 #ifndef NDEBUG 1562 , cil 1563 #endif 1564 ); 1565 } 1566 } 1567