1 //===-- FastISel.cpp - Implementation of the FastISel class ---------------===// 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 contains the implementation of the FastISel class. 11 // 12 // "Fast" instruction selection is designed to emit very poor code quickly. 13 // Also, it is not designed to be able to do much lowering, so most illegal 14 // types (e.g. i64 on 32-bit targets) and operations are not supported. It is 15 // also not intended to be able to do much optimization, except in a few cases 16 // where doing optimizations reduces overall compile time. For example, folding 17 // constants into immediate fields is often done, because it's cheap and it 18 // reduces the number of instructions later phases have to examine. 19 // 20 // "Fast" instruction selection is able to fail gracefully and transfer 21 // control to the SelectionDAG selector for operations that it doesn't 22 // support. In many cases, this allows us to avoid duplicating a lot of 23 // the complicated lowering logic that SelectionDAG currently has. 24 // 25 // The intended use for "fast" instruction selection is "-O0" mode 26 // compilation, where the quality of the generated code is irrelevant when 27 // weighed against the speed at which the code can be generated. Also, 28 // at -O0, the LLVM optimizers are not running, and this makes the 29 // compile time of codegen a much higher portion of the overall compile 30 // time. Despite its limitations, "fast" instruction selection is able to 31 // handle enough code on its own to provide noticeable overall speedups 32 // in -O0 compiles. 33 // 34 // Basic operations are supported in a target-independent way, by reading 35 // the same instruction descriptions that the SelectionDAG selector reads, 36 // and identifying simple arithmetic operations that can be directly selected 37 // from simple operators. More complicated operations currently require 38 // target-specific code. 39 // 40 //===----------------------------------------------------------------------===// 41 42 #include "llvm/CodeGen/Analysis.h" 43 #include "llvm/ADT/Optional.h" 44 #include "llvm/ADT/Statistic.h" 45 #include "llvm/Analysis/BranchProbabilityInfo.h" 46 #include "llvm/Analysis/Loads.h" 47 #include "llvm/Analysis/TargetLibraryInfo.h" 48 #include "llvm/CodeGen/Analysis.h" 49 #include "llvm/CodeGen/FastISel.h" 50 #include "llvm/CodeGen/FunctionLoweringInfo.h" 51 #include "llvm/CodeGen/MachineFrameInfo.h" 52 #include "llvm/CodeGen/MachineInstrBuilder.h" 53 #include "llvm/CodeGen/MachineModuleInfo.h" 54 #include "llvm/CodeGen/MachineRegisterInfo.h" 55 #include "llvm/CodeGen/StackMaps.h" 56 #include "llvm/IR/DataLayout.h" 57 #include "llvm/IR/DebugInfo.h" 58 #include "llvm/IR/Function.h" 59 #include "llvm/IR/GlobalVariable.h" 60 #include "llvm/IR/Instructions.h" 61 #include "llvm/IR/IntrinsicInst.h" 62 #include "llvm/IR/Mangler.h" 63 #include "llvm/IR/Operator.h" 64 #include "llvm/Support/Debug.h" 65 #include "llvm/Support/ErrorHandling.h" 66 #include "llvm/Support/raw_ostream.h" 67 #include "llvm/Target/TargetInstrInfo.h" 68 #include "llvm/Target/TargetLowering.h" 69 #include "llvm/Target/TargetMachine.h" 70 #include "llvm/Target/TargetSubtargetInfo.h" 71 using namespace llvm; 72 73 #define DEBUG_TYPE "isel" 74 75 STATISTIC(NumFastIselSuccessIndependent, "Number of insts selected by " 76 "target-independent selector"); 77 STATISTIC(NumFastIselSuccessTarget, "Number of insts selected by " 78 "target-specific selector"); 79 STATISTIC(NumFastIselDead, "Number of dead insts removed on failure"); 80 81 void FastISel::ArgListEntry::setAttributes(ImmutableCallSite *CS, 82 unsigned AttrIdx) { 83 IsSExt = CS->paramHasAttr(AttrIdx, Attribute::SExt); 84 IsZExt = CS->paramHasAttr(AttrIdx, Attribute::ZExt); 85 IsInReg = CS->paramHasAttr(AttrIdx, Attribute::InReg); 86 IsSRet = CS->paramHasAttr(AttrIdx, Attribute::StructRet); 87 IsNest = CS->paramHasAttr(AttrIdx, Attribute::Nest); 88 IsByVal = CS->paramHasAttr(AttrIdx, Attribute::ByVal); 89 IsInAlloca = CS->paramHasAttr(AttrIdx, Attribute::InAlloca); 90 IsReturned = CS->paramHasAttr(AttrIdx, Attribute::Returned); 91 Alignment = CS->getParamAlignment(AttrIdx); 92 } 93 94 /// Set the current block to which generated machine instructions will be 95 /// appended, and clear the local CSE map. 96 void FastISel::startNewBlock() { 97 LocalValueMap.clear(); 98 99 // Instructions are appended to FuncInfo.MBB. If the basic block already 100 // contains labels or copies, use the last instruction as the last local 101 // value. 102 EmitStartPt = nullptr; 103 if (!FuncInfo.MBB->empty()) 104 EmitStartPt = &FuncInfo.MBB->back(); 105 LastLocalValue = EmitStartPt; 106 } 107 108 bool FastISel::lowerArguments() { 109 if (!FuncInfo.CanLowerReturn) 110 // Fallback to SDISel argument lowering code to deal with sret pointer 111 // parameter. 112 return false; 113 114 if (!fastLowerArguments()) 115 return false; 116 117 // Enter arguments into ValueMap for uses in non-entry BBs. 118 for (Function::const_arg_iterator I = FuncInfo.Fn->arg_begin(), 119 E = FuncInfo.Fn->arg_end(); 120 I != E; ++I) { 121 DenseMap<const Value *, unsigned>::iterator VI = LocalValueMap.find(&*I); 122 assert(VI != LocalValueMap.end() && "Missed an argument?"); 123 FuncInfo.ValueMap[&*I] = VI->second; 124 } 125 return true; 126 } 127 128 void FastISel::flushLocalValueMap() { 129 LocalValueMap.clear(); 130 LastLocalValue = EmitStartPt; 131 recomputeInsertPt(); 132 SavedInsertPt = FuncInfo.InsertPt; 133 } 134 135 bool FastISel::hasTrivialKill(const Value *V) { 136 // Don't consider constants or arguments to have trivial kills. 137 const Instruction *I = dyn_cast<Instruction>(V); 138 if (!I) 139 return false; 140 141 // No-op casts are trivially coalesced by fast-isel. 142 if (const auto *Cast = dyn_cast<CastInst>(I)) 143 if (Cast->isNoopCast(DL.getIntPtrType(Cast->getContext())) && 144 !hasTrivialKill(Cast->getOperand(0))) 145 return false; 146 147 // Even the value might have only one use in the LLVM IR, it is possible that 148 // FastISel might fold the use into another instruction and now there is more 149 // than one use at the Machine Instruction level. 150 unsigned Reg = lookUpRegForValue(V); 151 if (Reg && !MRI.use_empty(Reg)) 152 return false; 153 154 // GEPs with all zero indices are trivially coalesced by fast-isel. 155 if (const auto *GEP = dyn_cast<GetElementPtrInst>(I)) 156 if (GEP->hasAllZeroIndices() && !hasTrivialKill(GEP->getOperand(0))) 157 return false; 158 159 // Only instructions with a single use in the same basic block are considered 160 // to have trivial kills. 161 return I->hasOneUse() && 162 !(I->getOpcode() == Instruction::BitCast || 163 I->getOpcode() == Instruction::PtrToInt || 164 I->getOpcode() == Instruction::IntToPtr) && 165 cast<Instruction>(*I->user_begin())->getParent() == I->getParent(); 166 } 167 168 unsigned FastISel::getRegForValue(const Value *V) { 169 EVT RealVT = TLI.getValueType(DL, V->getType(), /*AllowUnknown=*/true); 170 // Don't handle non-simple values in FastISel. 171 if (!RealVT.isSimple()) 172 return 0; 173 174 // Ignore illegal types. We must do this before looking up the value 175 // in ValueMap because Arguments are given virtual registers regardless 176 // of whether FastISel can handle them. 177 MVT VT = RealVT.getSimpleVT(); 178 if (!TLI.isTypeLegal(VT)) { 179 // Handle integer promotions, though, because they're common and easy. 180 if (VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16) 181 VT = TLI.getTypeToTransformTo(V->getContext(), VT).getSimpleVT(); 182 else 183 return 0; 184 } 185 186 // Look up the value to see if we already have a register for it. 187 unsigned Reg = lookUpRegForValue(V); 188 if (Reg) 189 return Reg; 190 191 // In bottom-up mode, just create the virtual register which will be used 192 // to hold the value. It will be materialized later. 193 if (isa<Instruction>(V) && 194 (!isa<AllocaInst>(V) || 195 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(V)))) 196 return FuncInfo.InitializeRegForValue(V); 197 198 SavePoint SaveInsertPt = enterLocalValueArea(); 199 200 // Materialize the value in a register. Emit any instructions in the 201 // local value area. 202 Reg = materializeRegForValue(V, VT); 203 204 leaveLocalValueArea(SaveInsertPt); 205 206 return Reg; 207 } 208 209 unsigned FastISel::materializeConstant(const Value *V, MVT VT) { 210 unsigned Reg = 0; 211 if (const auto *CI = dyn_cast<ConstantInt>(V)) { 212 if (CI->getValue().getActiveBits() <= 64) 213 Reg = fastEmit_i(VT, VT, ISD::Constant, CI->getZExtValue()); 214 } else if (isa<AllocaInst>(V)) 215 Reg = fastMaterializeAlloca(cast<AllocaInst>(V)); 216 else if (isa<ConstantPointerNull>(V)) 217 // Translate this as an integer zero so that it can be 218 // local-CSE'd with actual integer zeros. 219 Reg = getRegForValue( 220 Constant::getNullValue(DL.getIntPtrType(V->getContext()))); 221 else if (const auto *CF = dyn_cast<ConstantFP>(V)) { 222 if (CF->isNullValue()) 223 Reg = fastMaterializeFloatZero(CF); 224 else 225 // Try to emit the constant directly. 226 Reg = fastEmit_f(VT, VT, ISD::ConstantFP, CF); 227 228 if (!Reg) { 229 // Try to emit the constant by using an integer constant with a cast. 230 const APFloat &Flt = CF->getValueAPF(); 231 EVT IntVT = TLI.getPointerTy(DL); 232 233 uint64_t x[2]; 234 uint32_t IntBitWidth = IntVT.getSizeInBits(); 235 bool isExact; 236 (void)Flt.convertToInteger(x, IntBitWidth, /*isSigned=*/true, 237 APFloat::rmTowardZero, &isExact); 238 if (isExact) { 239 APInt IntVal(IntBitWidth, x); 240 241 unsigned IntegerReg = 242 getRegForValue(ConstantInt::get(V->getContext(), IntVal)); 243 if (IntegerReg != 0) 244 Reg = fastEmit_r(IntVT.getSimpleVT(), VT, ISD::SINT_TO_FP, IntegerReg, 245 /*Kill=*/false); 246 } 247 } 248 } else if (const auto *Op = dyn_cast<Operator>(V)) { 249 if (!selectOperator(Op, Op->getOpcode())) 250 if (!isa<Instruction>(Op) || 251 !fastSelectInstruction(cast<Instruction>(Op))) 252 return 0; 253 Reg = lookUpRegForValue(Op); 254 } else if (isa<UndefValue>(V)) { 255 Reg = createResultReg(TLI.getRegClassFor(VT)); 256 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 257 TII.get(TargetOpcode::IMPLICIT_DEF), Reg); 258 } 259 return Reg; 260 } 261 262 /// Helper for getRegForValue. This function is called when the value isn't 263 /// already available in a register and must be materialized with new 264 /// instructions. 265 unsigned FastISel::materializeRegForValue(const Value *V, MVT VT) { 266 unsigned Reg = 0; 267 // Give the target-specific code a try first. 268 if (isa<Constant>(V)) 269 Reg = fastMaterializeConstant(cast<Constant>(V)); 270 271 // If target-specific code couldn't or didn't want to handle the value, then 272 // give target-independent code a try. 273 if (!Reg) 274 Reg = materializeConstant(V, VT); 275 276 // Don't cache constant materializations in the general ValueMap. 277 // To do so would require tracking what uses they dominate. 278 if (Reg) { 279 LocalValueMap[V] = Reg; 280 LastLocalValue = MRI.getVRegDef(Reg); 281 } 282 return Reg; 283 } 284 285 unsigned FastISel::lookUpRegForValue(const Value *V) { 286 // Look up the value to see if we already have a register for it. We 287 // cache values defined by Instructions across blocks, and other values 288 // only locally. This is because Instructions already have the SSA 289 // def-dominates-use requirement enforced. 290 DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(V); 291 if (I != FuncInfo.ValueMap.end()) 292 return I->second; 293 return LocalValueMap[V]; 294 } 295 296 void FastISel::updateValueMap(const Value *I, unsigned Reg, unsigned NumRegs) { 297 if (!isa<Instruction>(I)) { 298 LocalValueMap[I] = Reg; 299 return; 300 } 301 302 unsigned &AssignedReg = FuncInfo.ValueMap[I]; 303 if (AssignedReg == 0) 304 // Use the new register. 305 AssignedReg = Reg; 306 else if (Reg != AssignedReg) { 307 // Arrange for uses of AssignedReg to be replaced by uses of Reg. 308 for (unsigned i = 0; i < NumRegs; i++) 309 FuncInfo.RegFixups[AssignedReg + i] = Reg + i; 310 311 AssignedReg = Reg; 312 } 313 } 314 315 std::pair<unsigned, bool> FastISel::getRegForGEPIndex(const Value *Idx) { 316 unsigned IdxN = getRegForValue(Idx); 317 if (IdxN == 0) 318 // Unhandled operand. Halt "fast" selection and bail. 319 return std::pair<unsigned, bool>(0, false); 320 321 bool IdxNIsKill = hasTrivialKill(Idx); 322 323 // If the index is smaller or larger than intptr_t, truncate or extend it. 324 MVT PtrVT = TLI.getPointerTy(DL); 325 EVT IdxVT = EVT::getEVT(Idx->getType(), /*HandleUnknown=*/false); 326 if (IdxVT.bitsLT(PtrVT)) { 327 IdxN = fastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::SIGN_EXTEND, IdxN, 328 IdxNIsKill); 329 IdxNIsKill = true; 330 } else if (IdxVT.bitsGT(PtrVT)) { 331 IdxN = 332 fastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::TRUNCATE, IdxN, IdxNIsKill); 333 IdxNIsKill = true; 334 } 335 return std::pair<unsigned, bool>(IdxN, IdxNIsKill); 336 } 337 338 void FastISel::recomputeInsertPt() { 339 if (getLastLocalValue()) { 340 FuncInfo.InsertPt = getLastLocalValue(); 341 FuncInfo.MBB = FuncInfo.InsertPt->getParent(); 342 ++FuncInfo.InsertPt; 343 } else 344 FuncInfo.InsertPt = FuncInfo.MBB->getFirstNonPHI(); 345 346 // Now skip past any EH_LABELs, which must remain at the beginning. 347 while (FuncInfo.InsertPt != FuncInfo.MBB->end() && 348 FuncInfo.InsertPt->getOpcode() == TargetOpcode::EH_LABEL) 349 ++FuncInfo.InsertPt; 350 } 351 352 void FastISel::removeDeadCode(MachineBasicBlock::iterator I, 353 MachineBasicBlock::iterator E) { 354 assert(I && E && std::distance(I, E) > 0 && "Invalid iterator!"); 355 while (I != E) { 356 MachineInstr *Dead = &*I; 357 ++I; 358 Dead->eraseFromParent(); 359 ++NumFastIselDead; 360 } 361 recomputeInsertPt(); 362 } 363 364 FastISel::SavePoint FastISel::enterLocalValueArea() { 365 MachineBasicBlock::iterator OldInsertPt = FuncInfo.InsertPt; 366 DebugLoc OldDL = DbgLoc; 367 recomputeInsertPt(); 368 DbgLoc = DebugLoc(); 369 SavePoint SP = {OldInsertPt, OldDL}; 370 return SP; 371 } 372 373 void FastISel::leaveLocalValueArea(SavePoint OldInsertPt) { 374 if (FuncInfo.InsertPt != FuncInfo.MBB->begin()) 375 LastLocalValue = std::prev(FuncInfo.InsertPt); 376 377 // Restore the previous insert position. 378 FuncInfo.InsertPt = OldInsertPt.InsertPt; 379 DbgLoc = OldInsertPt.DL; 380 } 381 382 bool FastISel::selectBinaryOp(const User *I, unsigned ISDOpcode) { 383 EVT VT = EVT::getEVT(I->getType(), /*HandleUnknown=*/true); 384 if (VT == MVT::Other || !VT.isSimple()) 385 // Unhandled type. Halt "fast" selection and bail. 386 return false; 387 388 // We only handle legal types. For example, on x86-32 the instruction 389 // selector contains all of the 64-bit instructions from x86-64, 390 // under the assumption that i64 won't be used if the target doesn't 391 // support it. 392 if (!TLI.isTypeLegal(VT)) { 393 // MVT::i1 is special. Allow AND, OR, or XOR because they 394 // don't require additional zeroing, which makes them easy. 395 if (VT == MVT::i1 && (ISDOpcode == ISD::AND || ISDOpcode == ISD::OR || 396 ISDOpcode == ISD::XOR)) 397 VT = TLI.getTypeToTransformTo(I->getContext(), VT); 398 else 399 return false; 400 } 401 402 // Check if the first operand is a constant, and handle it as "ri". At -O0, 403 // we don't have anything that canonicalizes operand order. 404 if (const auto *CI = dyn_cast<ConstantInt>(I->getOperand(0))) 405 if (isa<Instruction>(I) && cast<Instruction>(I)->isCommutative()) { 406 unsigned Op1 = getRegForValue(I->getOperand(1)); 407 if (!Op1) 408 return false; 409 bool Op1IsKill = hasTrivialKill(I->getOperand(1)); 410 411 unsigned ResultReg = 412 fastEmit_ri_(VT.getSimpleVT(), ISDOpcode, Op1, Op1IsKill, 413 CI->getZExtValue(), VT.getSimpleVT()); 414 if (!ResultReg) 415 return false; 416 417 // We successfully emitted code for the given LLVM Instruction. 418 updateValueMap(I, ResultReg); 419 return true; 420 } 421 422 unsigned Op0 = getRegForValue(I->getOperand(0)); 423 if (!Op0) // Unhandled operand. Halt "fast" selection and bail. 424 return false; 425 bool Op0IsKill = hasTrivialKill(I->getOperand(0)); 426 427 // Check if the second operand is a constant and handle it appropriately. 428 if (const auto *CI = dyn_cast<ConstantInt>(I->getOperand(1))) { 429 uint64_t Imm = CI->getSExtValue(); 430 431 // Transform "sdiv exact X, 8" -> "sra X, 3". 432 if (ISDOpcode == ISD::SDIV && isa<BinaryOperator>(I) && 433 cast<BinaryOperator>(I)->isExact() && isPowerOf2_64(Imm)) { 434 Imm = Log2_64(Imm); 435 ISDOpcode = ISD::SRA; 436 } 437 438 // Transform "urem x, pow2" -> "and x, pow2-1". 439 if (ISDOpcode == ISD::UREM && isa<BinaryOperator>(I) && 440 isPowerOf2_64(Imm)) { 441 --Imm; 442 ISDOpcode = ISD::AND; 443 } 444 445 unsigned ResultReg = fastEmit_ri_(VT.getSimpleVT(), ISDOpcode, Op0, 446 Op0IsKill, Imm, VT.getSimpleVT()); 447 if (!ResultReg) 448 return false; 449 450 // We successfully emitted code for the given LLVM Instruction. 451 updateValueMap(I, ResultReg); 452 return true; 453 } 454 455 // Check if the second operand is a constant float. 456 if (const auto *CF = dyn_cast<ConstantFP>(I->getOperand(1))) { 457 unsigned ResultReg = fastEmit_rf(VT.getSimpleVT(), VT.getSimpleVT(), 458 ISDOpcode, Op0, Op0IsKill, CF); 459 if (ResultReg) { 460 // We successfully emitted code for the given LLVM Instruction. 461 updateValueMap(I, ResultReg); 462 return true; 463 } 464 } 465 466 unsigned Op1 = getRegForValue(I->getOperand(1)); 467 if (!Op1) // Unhandled operand. Halt "fast" selection and bail. 468 return false; 469 bool Op1IsKill = hasTrivialKill(I->getOperand(1)); 470 471 // Now we have both operands in registers. Emit the instruction. 472 unsigned ResultReg = fastEmit_rr(VT.getSimpleVT(), VT.getSimpleVT(), 473 ISDOpcode, Op0, Op0IsKill, Op1, Op1IsKill); 474 if (!ResultReg) 475 // Target-specific code wasn't able to find a machine opcode for 476 // the given ISD opcode and type. Halt "fast" selection and bail. 477 return false; 478 479 // We successfully emitted code for the given LLVM Instruction. 480 updateValueMap(I, ResultReg); 481 return true; 482 } 483 484 bool FastISel::selectGetElementPtr(const User *I) { 485 unsigned N = getRegForValue(I->getOperand(0)); 486 if (!N) // Unhandled operand. Halt "fast" selection and bail. 487 return false; 488 bool NIsKill = hasTrivialKill(I->getOperand(0)); 489 490 // Keep a running tab of the total offset to coalesce multiple N = N + Offset 491 // into a single N = N + TotalOffset. 492 uint64_t TotalOffs = 0; 493 // FIXME: What's a good SWAG number for MaxOffs? 494 uint64_t MaxOffs = 2048; 495 Type *Ty = I->getOperand(0)->getType(); 496 MVT VT = TLI.getPointerTy(DL); 497 for (GetElementPtrInst::const_op_iterator OI = I->op_begin() + 1, 498 E = I->op_end(); 499 OI != E; ++OI) { 500 const Value *Idx = *OI; 501 if (auto *StTy = dyn_cast<StructType>(Ty)) { 502 uint64_t Field = cast<ConstantInt>(Idx)->getZExtValue(); 503 if (Field) { 504 // N = N + Offset 505 TotalOffs += DL.getStructLayout(StTy)->getElementOffset(Field); 506 if (TotalOffs >= MaxOffs) { 507 N = fastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT); 508 if (!N) // Unhandled operand. Halt "fast" selection and bail. 509 return false; 510 NIsKill = true; 511 TotalOffs = 0; 512 } 513 } 514 Ty = StTy->getElementType(Field); 515 } else { 516 Ty = cast<SequentialType>(Ty)->getElementType(); 517 518 // If this is a constant subscript, handle it quickly. 519 if (const auto *CI = dyn_cast<ConstantInt>(Idx)) { 520 if (CI->isZero()) 521 continue; 522 // N = N + Offset 523 uint64_t IdxN = CI->getValue().sextOrTrunc(64).getSExtValue(); 524 TotalOffs += DL.getTypeAllocSize(Ty) * IdxN; 525 if (TotalOffs >= MaxOffs) { 526 N = fastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT); 527 if (!N) // Unhandled operand. Halt "fast" selection and bail. 528 return false; 529 NIsKill = true; 530 TotalOffs = 0; 531 } 532 continue; 533 } 534 if (TotalOffs) { 535 N = fastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT); 536 if (!N) // Unhandled operand. Halt "fast" selection and bail. 537 return false; 538 NIsKill = true; 539 TotalOffs = 0; 540 } 541 542 // N = N + Idx * ElementSize; 543 uint64_t ElementSize = DL.getTypeAllocSize(Ty); 544 std::pair<unsigned, bool> Pair = getRegForGEPIndex(Idx); 545 unsigned IdxN = Pair.first; 546 bool IdxNIsKill = Pair.second; 547 if (!IdxN) // Unhandled operand. Halt "fast" selection and bail. 548 return false; 549 550 if (ElementSize != 1) { 551 IdxN = fastEmit_ri_(VT, ISD::MUL, IdxN, IdxNIsKill, ElementSize, VT); 552 if (!IdxN) // Unhandled operand. Halt "fast" selection and bail. 553 return false; 554 IdxNIsKill = true; 555 } 556 N = fastEmit_rr(VT, VT, ISD::ADD, N, NIsKill, IdxN, IdxNIsKill); 557 if (!N) // Unhandled operand. Halt "fast" selection and bail. 558 return false; 559 } 560 } 561 if (TotalOffs) { 562 N = fastEmit_ri_(VT, ISD::ADD, N, NIsKill, TotalOffs, VT); 563 if (!N) // Unhandled operand. Halt "fast" selection and bail. 564 return false; 565 } 566 567 // We successfully emitted code for the given LLVM Instruction. 568 updateValueMap(I, N); 569 return true; 570 } 571 572 bool FastISel::addStackMapLiveVars(SmallVectorImpl<MachineOperand> &Ops, 573 const CallInst *CI, unsigned StartIdx) { 574 for (unsigned i = StartIdx, e = CI->getNumArgOperands(); i != e; ++i) { 575 Value *Val = CI->getArgOperand(i); 576 // Check for constants and encode them with a StackMaps::ConstantOp prefix. 577 if (const auto *C = dyn_cast<ConstantInt>(Val)) { 578 Ops.push_back(MachineOperand::CreateImm(StackMaps::ConstantOp)); 579 Ops.push_back(MachineOperand::CreateImm(C->getSExtValue())); 580 } else if (isa<ConstantPointerNull>(Val)) { 581 Ops.push_back(MachineOperand::CreateImm(StackMaps::ConstantOp)); 582 Ops.push_back(MachineOperand::CreateImm(0)); 583 } else if (auto *AI = dyn_cast<AllocaInst>(Val)) { 584 // Values coming from a stack location also require a sepcial encoding, 585 // but that is added later on by the target specific frame index 586 // elimination implementation. 587 auto SI = FuncInfo.StaticAllocaMap.find(AI); 588 if (SI != FuncInfo.StaticAllocaMap.end()) 589 Ops.push_back(MachineOperand::CreateFI(SI->second)); 590 else 591 return false; 592 } else { 593 unsigned Reg = getRegForValue(Val); 594 if (!Reg) 595 return false; 596 Ops.push_back(MachineOperand::CreateReg(Reg, /*IsDef=*/false)); 597 } 598 } 599 return true; 600 } 601 602 bool FastISel::selectStackmap(const CallInst *I) { 603 // void @llvm.experimental.stackmap(i64 <id>, i32 <numShadowBytes>, 604 // [live variables...]) 605 assert(I->getCalledFunction()->getReturnType()->isVoidTy() && 606 "Stackmap cannot return a value."); 607 608 // The stackmap intrinsic only records the live variables (the arguments 609 // passed to it) and emits NOPS (if requested). Unlike the patchpoint 610 // intrinsic, this won't be lowered to a function call. This means we don't 611 // have to worry about calling conventions and target-specific lowering code. 612 // Instead we perform the call lowering right here. 613 // 614 // CALLSEQ_START(0...) 615 // STACKMAP(id, nbytes, ...) 616 // CALLSEQ_END(0, 0) 617 // 618 SmallVector<MachineOperand, 32> Ops; 619 620 // Add the <id> and <numBytes> constants. 621 assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)) && 622 "Expected a constant integer."); 623 const auto *ID = cast<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)); 624 Ops.push_back(MachineOperand::CreateImm(ID->getZExtValue())); 625 626 assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::NBytesPos)) && 627 "Expected a constant integer."); 628 const auto *NumBytes = 629 cast<ConstantInt>(I->getOperand(PatchPointOpers::NBytesPos)); 630 Ops.push_back(MachineOperand::CreateImm(NumBytes->getZExtValue())); 631 632 // Push live variables for the stack map (skipping the first two arguments 633 // <id> and <numBytes>). 634 if (!addStackMapLiveVars(Ops, I, 2)) 635 return false; 636 637 // We are not adding any register mask info here, because the stackmap doesn't 638 // clobber anything. 639 640 // Add scratch registers as implicit def and early clobber. 641 CallingConv::ID CC = I->getCallingConv(); 642 const MCPhysReg *ScratchRegs = TLI.getScratchRegisters(CC); 643 for (unsigned i = 0; ScratchRegs[i]; ++i) 644 Ops.push_back(MachineOperand::CreateReg( 645 ScratchRegs[i], /*IsDef=*/true, /*IsImp=*/true, /*IsKill=*/false, 646 /*IsDead=*/false, /*IsUndef=*/false, /*IsEarlyClobber=*/true)); 647 648 // Issue CALLSEQ_START 649 unsigned AdjStackDown = TII.getCallFrameSetupOpcode(); 650 auto Builder = 651 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackDown)); 652 const MCInstrDesc &MCID = Builder.getInstr()->getDesc(); 653 for (unsigned I = 0, E = MCID.getNumOperands(); I < E; ++I) 654 Builder.addImm(0); 655 656 // Issue STACKMAP. 657 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 658 TII.get(TargetOpcode::STACKMAP)); 659 for (auto const &MO : Ops) 660 MIB.addOperand(MO); 661 662 // Issue CALLSEQ_END 663 unsigned AdjStackUp = TII.getCallFrameDestroyOpcode(); 664 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(AdjStackUp)) 665 .addImm(0) 666 .addImm(0); 667 668 // Inform the Frame Information that we have a stackmap in this function. 669 FuncInfo.MF->getFrameInfo()->setHasStackMap(); 670 671 return true; 672 } 673 674 /// \brief Lower an argument list according to the target calling convention. 675 /// 676 /// This is a helper for lowering intrinsics that follow a target calling 677 /// convention or require stack pointer adjustment. Only a subset of the 678 /// intrinsic's operands need to participate in the calling convention. 679 bool FastISel::lowerCallOperands(const CallInst *CI, unsigned ArgIdx, 680 unsigned NumArgs, const Value *Callee, 681 bool ForceRetVoidTy, CallLoweringInfo &CLI) { 682 ArgListTy Args; 683 Args.reserve(NumArgs); 684 685 // Populate the argument list. 686 // Attributes for args start at offset 1, after the return attribute. 687 ImmutableCallSite CS(CI); 688 for (unsigned ArgI = ArgIdx, ArgE = ArgIdx + NumArgs, AttrI = ArgIdx + 1; 689 ArgI != ArgE; ++ArgI) { 690 Value *V = CI->getOperand(ArgI); 691 692 assert(!V->getType()->isEmptyTy() && "Empty type passed to intrinsic."); 693 694 ArgListEntry Entry; 695 Entry.Val = V; 696 Entry.Ty = V->getType(); 697 Entry.setAttributes(&CS, AttrI); 698 Args.push_back(Entry); 699 } 700 701 Type *RetTy = ForceRetVoidTy ? Type::getVoidTy(CI->getType()->getContext()) 702 : CI->getType(); 703 CLI.setCallee(CI->getCallingConv(), RetTy, Callee, std::move(Args), NumArgs); 704 705 return lowerCallTo(CLI); 706 } 707 708 FastISel::CallLoweringInfo &FastISel::CallLoweringInfo::setCallee( 709 const DataLayout &DL, MCContext &Ctx, CallingConv::ID CC, Type *ResultTy, 710 const char *Target, ArgListTy &&ArgsList, unsigned FixedArgs) { 711 SmallString<32> MangledName; 712 Mangler::getNameWithPrefix(MangledName, Target, DL); 713 MCSymbol *Sym = Ctx.getOrCreateSymbol(MangledName); 714 return setCallee(CC, ResultTy, Sym, std::move(ArgsList), FixedArgs); 715 } 716 717 bool FastISel::selectPatchpoint(const CallInst *I) { 718 // void|i64 @llvm.experimental.patchpoint.void|i64(i64 <id>, 719 // i32 <numBytes>, 720 // i8* <target>, 721 // i32 <numArgs>, 722 // [Args...], 723 // [live variables...]) 724 CallingConv::ID CC = I->getCallingConv(); 725 bool IsAnyRegCC = CC == CallingConv::AnyReg; 726 bool HasDef = !I->getType()->isVoidTy(); 727 Value *Callee = I->getOperand(PatchPointOpers::TargetPos)->stripPointerCasts(); 728 729 // Get the real number of arguments participating in the call <numArgs> 730 assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::NArgPos)) && 731 "Expected a constant integer."); 732 const auto *NumArgsVal = 733 cast<ConstantInt>(I->getOperand(PatchPointOpers::NArgPos)); 734 unsigned NumArgs = NumArgsVal->getZExtValue(); 735 736 // Skip the four meta args: <id>, <numNopBytes>, <target>, <numArgs> 737 // This includes all meta-operands up to but not including CC. 738 unsigned NumMetaOpers = PatchPointOpers::CCPos; 739 assert(I->getNumArgOperands() >= NumMetaOpers + NumArgs && 740 "Not enough arguments provided to the patchpoint intrinsic"); 741 742 // For AnyRegCC the arguments are lowered later on manually. 743 unsigned NumCallArgs = IsAnyRegCC ? 0 : NumArgs; 744 CallLoweringInfo CLI; 745 CLI.setIsPatchPoint(); 746 if (!lowerCallOperands(I, NumMetaOpers, NumCallArgs, Callee, IsAnyRegCC, CLI)) 747 return false; 748 749 assert(CLI.Call && "No call instruction specified."); 750 751 SmallVector<MachineOperand, 32> Ops; 752 753 // Add an explicit result reg if we use the anyreg calling convention. 754 if (IsAnyRegCC && HasDef) { 755 assert(CLI.NumResultRegs == 0 && "Unexpected result register."); 756 CLI.ResultReg = createResultReg(TLI.getRegClassFor(MVT::i64)); 757 CLI.NumResultRegs = 1; 758 Ops.push_back(MachineOperand::CreateReg(CLI.ResultReg, /*IsDef=*/true)); 759 } 760 761 // Add the <id> and <numBytes> constants. 762 assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)) && 763 "Expected a constant integer."); 764 const auto *ID = cast<ConstantInt>(I->getOperand(PatchPointOpers::IDPos)); 765 Ops.push_back(MachineOperand::CreateImm(ID->getZExtValue())); 766 767 assert(isa<ConstantInt>(I->getOperand(PatchPointOpers::NBytesPos)) && 768 "Expected a constant integer."); 769 const auto *NumBytes = 770 cast<ConstantInt>(I->getOperand(PatchPointOpers::NBytesPos)); 771 Ops.push_back(MachineOperand::CreateImm(NumBytes->getZExtValue())); 772 773 // Add the call target. 774 if (const auto *C = dyn_cast<IntToPtrInst>(Callee)) { 775 uint64_t CalleeConstAddr = 776 cast<ConstantInt>(C->getOperand(0))->getZExtValue(); 777 Ops.push_back(MachineOperand::CreateImm(CalleeConstAddr)); 778 } else if (const auto *C = dyn_cast<ConstantExpr>(Callee)) { 779 if (C->getOpcode() == Instruction::IntToPtr) { 780 uint64_t CalleeConstAddr = 781 cast<ConstantInt>(C->getOperand(0))->getZExtValue(); 782 Ops.push_back(MachineOperand::CreateImm(CalleeConstAddr)); 783 } else 784 llvm_unreachable("Unsupported ConstantExpr."); 785 } else if (const auto *GV = dyn_cast<GlobalValue>(Callee)) { 786 Ops.push_back(MachineOperand::CreateGA(GV, 0)); 787 } else if (isa<ConstantPointerNull>(Callee)) 788 Ops.push_back(MachineOperand::CreateImm(0)); 789 else 790 llvm_unreachable("Unsupported callee address."); 791 792 // Adjust <numArgs> to account for any arguments that have been passed on 793 // the stack instead. 794 unsigned NumCallRegArgs = IsAnyRegCC ? NumArgs : CLI.OutRegs.size(); 795 Ops.push_back(MachineOperand::CreateImm(NumCallRegArgs)); 796 797 // Add the calling convention 798 Ops.push_back(MachineOperand::CreateImm((unsigned)CC)); 799 800 // Add the arguments we omitted previously. The register allocator should 801 // place these in any free register. 802 if (IsAnyRegCC) { 803 for (unsigned i = NumMetaOpers, e = NumMetaOpers + NumArgs; i != e; ++i) { 804 unsigned Reg = getRegForValue(I->getArgOperand(i)); 805 if (!Reg) 806 return false; 807 Ops.push_back(MachineOperand::CreateReg(Reg, /*IsDef=*/false)); 808 } 809 } 810 811 // Push the arguments from the call instruction. 812 for (auto Reg : CLI.OutRegs) 813 Ops.push_back(MachineOperand::CreateReg(Reg, /*IsDef=*/false)); 814 815 // Push live variables for the stack map. 816 if (!addStackMapLiveVars(Ops, I, NumMetaOpers + NumArgs)) 817 return false; 818 819 // Push the register mask info. 820 Ops.push_back(MachineOperand::CreateRegMask( 821 TRI.getCallPreservedMask(*FuncInfo.MF, CC))); 822 823 // Add scratch registers as implicit def and early clobber. 824 const MCPhysReg *ScratchRegs = TLI.getScratchRegisters(CC); 825 for (unsigned i = 0; ScratchRegs[i]; ++i) 826 Ops.push_back(MachineOperand::CreateReg( 827 ScratchRegs[i], /*IsDef=*/true, /*IsImp=*/true, /*IsKill=*/false, 828 /*IsDead=*/false, /*IsUndef=*/false, /*IsEarlyClobber=*/true)); 829 830 // Add implicit defs (return values). 831 for (auto Reg : CLI.InRegs) 832 Ops.push_back(MachineOperand::CreateReg(Reg, /*IsDef=*/true, 833 /*IsImpl=*/true)); 834 835 // Insert the patchpoint instruction before the call generated by the target. 836 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, CLI.Call, DbgLoc, 837 TII.get(TargetOpcode::PATCHPOINT)); 838 839 for (auto &MO : Ops) 840 MIB.addOperand(MO); 841 842 MIB->setPhysRegsDeadExcept(CLI.InRegs, TRI); 843 844 // Delete the original call instruction. 845 CLI.Call->eraseFromParent(); 846 847 // Inform the Frame Information that we have a patchpoint in this function. 848 FuncInfo.MF->getFrameInfo()->setHasPatchPoint(); 849 850 if (CLI.NumResultRegs) 851 updateValueMap(I, CLI.ResultReg, CLI.NumResultRegs); 852 return true; 853 } 854 855 /// Returns an AttributeSet representing the attributes applied to the return 856 /// value of the given call. 857 static AttributeSet getReturnAttrs(FastISel::CallLoweringInfo &CLI) { 858 SmallVector<Attribute::AttrKind, 2> Attrs; 859 if (CLI.RetSExt) 860 Attrs.push_back(Attribute::SExt); 861 if (CLI.RetZExt) 862 Attrs.push_back(Attribute::ZExt); 863 if (CLI.IsInReg) 864 Attrs.push_back(Attribute::InReg); 865 866 return AttributeSet::get(CLI.RetTy->getContext(), AttributeSet::ReturnIndex, 867 Attrs); 868 } 869 870 bool FastISel::lowerCallTo(const CallInst *CI, const char *SymName, 871 unsigned NumArgs) { 872 MCContext &Ctx = MF->getContext(); 873 SmallString<32> MangledName; 874 Mangler::getNameWithPrefix(MangledName, SymName, DL); 875 MCSymbol *Sym = Ctx.getOrCreateSymbol(MangledName); 876 return lowerCallTo(CI, Sym, NumArgs); 877 } 878 879 bool FastISel::lowerCallTo(const CallInst *CI, MCSymbol *Symbol, 880 unsigned NumArgs) { 881 ImmutableCallSite CS(CI); 882 883 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); 884 FunctionType *FTy = cast<FunctionType>(PT->getElementType()); 885 Type *RetTy = FTy->getReturnType(); 886 887 ArgListTy Args; 888 Args.reserve(NumArgs); 889 890 // Populate the argument list. 891 // Attributes for args start at offset 1, after the return attribute. 892 for (unsigned ArgI = 0; ArgI != NumArgs; ++ArgI) { 893 Value *V = CI->getOperand(ArgI); 894 895 assert(!V->getType()->isEmptyTy() && "Empty type passed to intrinsic."); 896 897 ArgListEntry Entry; 898 Entry.Val = V; 899 Entry.Ty = V->getType(); 900 Entry.setAttributes(&CS, ArgI + 1); 901 Args.push_back(Entry); 902 } 903 904 CallLoweringInfo CLI; 905 CLI.setCallee(RetTy, FTy, Symbol, std::move(Args), CS, NumArgs); 906 907 return lowerCallTo(CLI); 908 } 909 910 bool FastISel::lowerCallTo(CallLoweringInfo &CLI) { 911 // Handle the incoming return values from the call. 912 CLI.clearIns(); 913 SmallVector<EVT, 4> RetTys; 914 ComputeValueVTs(TLI, DL, CLI.RetTy, RetTys); 915 916 SmallVector<ISD::OutputArg, 4> Outs; 917 GetReturnInfo(CLI.RetTy, getReturnAttrs(CLI), Outs, TLI, DL); 918 919 bool CanLowerReturn = TLI.CanLowerReturn( 920 CLI.CallConv, *FuncInfo.MF, CLI.IsVarArg, Outs, CLI.RetTy->getContext()); 921 922 // FIXME: sret demotion isn't supported yet - bail out. 923 if (!CanLowerReturn) 924 return false; 925 926 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { 927 EVT VT = RetTys[I]; 928 MVT RegisterVT = TLI.getRegisterType(CLI.RetTy->getContext(), VT); 929 unsigned NumRegs = TLI.getNumRegisters(CLI.RetTy->getContext(), VT); 930 for (unsigned i = 0; i != NumRegs; ++i) { 931 ISD::InputArg MyFlags; 932 MyFlags.VT = RegisterVT; 933 MyFlags.ArgVT = VT; 934 MyFlags.Used = CLI.IsReturnValueUsed; 935 if (CLI.RetSExt) 936 MyFlags.Flags.setSExt(); 937 if (CLI.RetZExt) 938 MyFlags.Flags.setZExt(); 939 if (CLI.IsInReg) 940 MyFlags.Flags.setInReg(); 941 CLI.Ins.push_back(MyFlags); 942 } 943 } 944 945 // Handle all of the outgoing arguments. 946 CLI.clearOuts(); 947 for (auto &Arg : CLI.getArgs()) { 948 Type *FinalType = Arg.Ty; 949 if (Arg.IsByVal) 950 FinalType = cast<PointerType>(Arg.Ty)->getElementType(); 951 bool NeedsRegBlock = TLI.functionArgumentNeedsConsecutiveRegisters( 952 FinalType, CLI.CallConv, CLI.IsVarArg); 953 954 ISD::ArgFlagsTy Flags; 955 if (Arg.IsZExt) 956 Flags.setZExt(); 957 if (Arg.IsSExt) 958 Flags.setSExt(); 959 if (Arg.IsInReg) 960 Flags.setInReg(); 961 if (Arg.IsSRet) 962 Flags.setSRet(); 963 if (Arg.IsByVal) 964 Flags.setByVal(); 965 if (Arg.IsInAlloca) { 966 Flags.setInAlloca(); 967 // Set the byval flag for CCAssignFn callbacks that don't know about 968 // inalloca. This way we can know how many bytes we should've allocated 969 // and how many bytes a callee cleanup function will pop. If we port 970 // inalloca to more targets, we'll have to add custom inalloca handling in 971 // the various CC lowering callbacks. 972 Flags.setByVal(); 973 } 974 if (Arg.IsByVal || Arg.IsInAlloca) { 975 PointerType *Ty = cast<PointerType>(Arg.Ty); 976 Type *ElementTy = Ty->getElementType(); 977 unsigned FrameSize = DL.getTypeAllocSize(ElementTy); 978 // For ByVal, alignment should come from FE. BE will guess if this info is 979 // not there, but there are cases it cannot get right. 980 unsigned FrameAlign = Arg.Alignment; 981 if (!FrameAlign) 982 FrameAlign = TLI.getByValTypeAlignment(ElementTy, DL); 983 Flags.setByValSize(FrameSize); 984 Flags.setByValAlign(FrameAlign); 985 } 986 if (Arg.IsNest) 987 Flags.setNest(); 988 if (NeedsRegBlock) 989 Flags.setInConsecutiveRegs(); 990 unsigned OriginalAlignment = DL.getABITypeAlignment(Arg.Ty); 991 Flags.setOrigAlign(OriginalAlignment); 992 993 CLI.OutVals.push_back(Arg.Val); 994 CLI.OutFlags.push_back(Flags); 995 } 996 997 if (!fastLowerCall(CLI)) 998 return false; 999 1000 // Set all unused physreg defs as dead. 1001 assert(CLI.Call && "No call instruction specified."); 1002 CLI.Call->setPhysRegsDeadExcept(CLI.InRegs, TRI); 1003 1004 if (CLI.NumResultRegs && CLI.CS) 1005 updateValueMap(CLI.CS->getInstruction(), CLI.ResultReg, CLI.NumResultRegs); 1006 1007 return true; 1008 } 1009 1010 bool FastISel::lowerCall(const CallInst *CI) { 1011 ImmutableCallSite CS(CI); 1012 1013 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); 1014 FunctionType *FuncTy = cast<FunctionType>(PT->getElementType()); 1015 Type *RetTy = FuncTy->getReturnType(); 1016 1017 ArgListTy Args; 1018 ArgListEntry Entry; 1019 Args.reserve(CS.arg_size()); 1020 1021 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); 1022 i != e; ++i) { 1023 Value *V = *i; 1024 1025 // Skip empty types 1026 if (V->getType()->isEmptyTy()) 1027 continue; 1028 1029 Entry.Val = V; 1030 Entry.Ty = V->getType(); 1031 1032 // Skip the first return-type Attribute to get to params. 1033 Entry.setAttributes(&CS, i - CS.arg_begin() + 1); 1034 Args.push_back(Entry); 1035 } 1036 1037 // Check if target-independent constraints permit a tail call here. 1038 // Target-dependent constraints are checked within fastLowerCall. 1039 bool IsTailCall = CI->isTailCall(); 1040 if (IsTailCall && !isInTailCallPosition(CS, TM)) 1041 IsTailCall = false; 1042 1043 CallLoweringInfo CLI; 1044 CLI.setCallee(RetTy, FuncTy, CI->getCalledValue(), std::move(Args), CS) 1045 .setTailCall(IsTailCall); 1046 1047 return lowerCallTo(CLI); 1048 } 1049 1050 bool FastISel::selectCall(const User *I) { 1051 const CallInst *Call = cast<CallInst>(I); 1052 1053 // Handle simple inline asms. 1054 if (const InlineAsm *IA = dyn_cast<InlineAsm>(Call->getCalledValue())) { 1055 // If the inline asm has side effects, then make sure that no local value 1056 // lives across by flushing the local value map. 1057 if (IA->hasSideEffects()) 1058 flushLocalValueMap(); 1059 1060 // Don't attempt to handle constraints. 1061 if (!IA->getConstraintString().empty()) 1062 return false; 1063 1064 unsigned ExtraInfo = 0; 1065 if (IA->hasSideEffects()) 1066 ExtraInfo |= InlineAsm::Extra_HasSideEffects; 1067 if (IA->isAlignStack()) 1068 ExtraInfo |= InlineAsm::Extra_IsAlignStack; 1069 1070 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1071 TII.get(TargetOpcode::INLINEASM)) 1072 .addExternalSymbol(IA->getAsmString().c_str()) 1073 .addImm(ExtraInfo); 1074 return true; 1075 } 1076 1077 MachineModuleInfo &MMI = FuncInfo.MF->getMMI(); 1078 ComputeUsesVAFloatArgument(*Call, &MMI); 1079 1080 // Handle intrinsic function calls. 1081 if (const auto *II = dyn_cast<IntrinsicInst>(Call)) 1082 return selectIntrinsicCall(II); 1083 1084 // Usually, it does not make sense to initialize a value, 1085 // make an unrelated function call and use the value, because 1086 // it tends to be spilled on the stack. So, we move the pointer 1087 // to the last local value to the beginning of the block, so that 1088 // all the values which have already been materialized, 1089 // appear after the call. It also makes sense to skip intrinsics 1090 // since they tend to be inlined. 1091 flushLocalValueMap(); 1092 1093 return lowerCall(Call); 1094 } 1095 1096 bool FastISel::selectIntrinsicCall(const IntrinsicInst *II) { 1097 switch (II->getIntrinsicID()) { 1098 default: 1099 break; 1100 // At -O0 we don't care about the lifetime intrinsics. 1101 case Intrinsic::lifetime_start: 1102 case Intrinsic::lifetime_end: 1103 // The donothing intrinsic does, well, nothing. 1104 case Intrinsic::donothing: 1105 return true; 1106 case Intrinsic::dbg_declare: { 1107 const DbgDeclareInst *DI = cast<DbgDeclareInst>(II); 1108 assert(DI->getVariable() && "Missing variable"); 1109 if (!FuncInfo.MF->getMMI().hasDebugInfo()) { 1110 DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n"); 1111 return true; 1112 } 1113 1114 const Value *Address = DI->getAddress(); 1115 if (!Address || isa<UndefValue>(Address)) { 1116 DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n"); 1117 return true; 1118 } 1119 1120 unsigned Offset = 0; 1121 Optional<MachineOperand> Op; 1122 if (const auto *Arg = dyn_cast<Argument>(Address)) 1123 // Some arguments' frame index is recorded during argument lowering. 1124 Offset = FuncInfo.getArgumentFrameIndex(Arg); 1125 if (Offset) 1126 Op = MachineOperand::CreateFI(Offset); 1127 if (!Op) 1128 if (unsigned Reg = lookUpRegForValue(Address)) 1129 Op = MachineOperand::CreateReg(Reg, false); 1130 1131 // If we have a VLA that has a "use" in a metadata node that's then used 1132 // here but it has no other uses, then we have a problem. E.g., 1133 // 1134 // int foo (const int *x) { 1135 // char a[*x]; 1136 // return 0; 1137 // } 1138 // 1139 // If we assign 'a' a vreg and fast isel later on has to use the selection 1140 // DAG isel, it will want to copy the value to the vreg. However, there are 1141 // no uses, which goes counter to what selection DAG isel expects. 1142 if (!Op && !Address->use_empty() && isa<Instruction>(Address) && 1143 (!isa<AllocaInst>(Address) || 1144 !FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(Address)))) 1145 Op = MachineOperand::CreateReg(FuncInfo.InitializeRegForValue(Address), 1146 false); 1147 1148 if (Op) { 1149 assert(DI->getVariable()->isValidLocationForIntrinsic(DbgLoc) && 1150 "Expected inlined-at fields to agree"); 1151 if (Op->isReg()) { 1152 Op->setIsDebug(true); 1153 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1154 TII.get(TargetOpcode::DBG_VALUE), false, Op->getReg(), 0, 1155 DI->getVariable(), DI->getExpression()); 1156 } else 1157 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1158 TII.get(TargetOpcode::DBG_VALUE)) 1159 .addOperand(*Op) 1160 .addImm(0) 1161 .addMetadata(DI->getVariable()) 1162 .addMetadata(DI->getExpression()); 1163 } else { 1164 // We can't yet handle anything else here because it would require 1165 // generating code, thus altering codegen because of debug info. 1166 DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n"); 1167 } 1168 return true; 1169 } 1170 case Intrinsic::dbg_value: { 1171 // This form of DBG_VALUE is target-independent. 1172 const DbgValueInst *DI = cast<DbgValueInst>(II); 1173 const MCInstrDesc &II = TII.get(TargetOpcode::DBG_VALUE); 1174 const Value *V = DI->getValue(); 1175 assert(DI->getVariable()->isValidLocationForIntrinsic(DbgLoc) && 1176 "Expected inlined-at fields to agree"); 1177 if (!V) { 1178 // Currently the optimizer can produce this; insert an undef to 1179 // help debugging. Probably the optimizer should not do this. 1180 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 1181 .addReg(0U) 1182 .addImm(DI->getOffset()) 1183 .addMetadata(DI->getVariable()) 1184 .addMetadata(DI->getExpression()); 1185 } else if (const auto *CI = dyn_cast<ConstantInt>(V)) { 1186 if (CI->getBitWidth() > 64) 1187 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 1188 .addCImm(CI) 1189 .addImm(DI->getOffset()) 1190 .addMetadata(DI->getVariable()) 1191 .addMetadata(DI->getExpression()); 1192 else 1193 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 1194 .addImm(CI->getZExtValue()) 1195 .addImm(DI->getOffset()) 1196 .addMetadata(DI->getVariable()) 1197 .addMetadata(DI->getExpression()); 1198 } else if (const auto *CF = dyn_cast<ConstantFP>(V)) { 1199 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 1200 .addFPImm(CF) 1201 .addImm(DI->getOffset()) 1202 .addMetadata(DI->getVariable()) 1203 .addMetadata(DI->getExpression()); 1204 } else if (unsigned Reg = lookUpRegForValue(V)) { 1205 // FIXME: This does not handle register-indirect values at offset 0. 1206 bool IsIndirect = DI->getOffset() != 0; 1207 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, IsIndirect, Reg, 1208 DI->getOffset(), DI->getVariable(), DI->getExpression()); 1209 } else { 1210 // We can't yet handle anything else here because it would require 1211 // generating code, thus altering codegen because of debug info. 1212 DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n"); 1213 } 1214 return true; 1215 } 1216 case Intrinsic::objectsize: { 1217 ConstantInt *CI = cast<ConstantInt>(II->getArgOperand(1)); 1218 unsigned long long Res = CI->isZero() ? -1ULL : 0; 1219 Constant *ResCI = ConstantInt::get(II->getType(), Res); 1220 unsigned ResultReg = getRegForValue(ResCI); 1221 if (!ResultReg) 1222 return false; 1223 updateValueMap(II, ResultReg); 1224 return true; 1225 } 1226 case Intrinsic::expect: { 1227 unsigned ResultReg = getRegForValue(II->getArgOperand(0)); 1228 if (!ResultReg) 1229 return false; 1230 updateValueMap(II, ResultReg); 1231 return true; 1232 } 1233 case Intrinsic::experimental_stackmap: 1234 return selectStackmap(II); 1235 case Intrinsic::experimental_patchpoint_void: 1236 case Intrinsic::experimental_patchpoint_i64: 1237 return selectPatchpoint(II); 1238 } 1239 1240 return fastLowerIntrinsicCall(II); 1241 } 1242 1243 bool FastISel::selectCast(const User *I, unsigned Opcode) { 1244 EVT SrcVT = TLI.getValueType(DL, I->getOperand(0)->getType()); 1245 EVT DstVT = TLI.getValueType(DL, I->getType()); 1246 1247 if (SrcVT == MVT::Other || !SrcVT.isSimple() || DstVT == MVT::Other || 1248 !DstVT.isSimple()) 1249 // Unhandled type. Halt "fast" selection and bail. 1250 return false; 1251 1252 // Check if the destination type is legal. 1253 if (!TLI.isTypeLegal(DstVT)) 1254 return false; 1255 1256 // Check if the source operand is legal. 1257 if (!TLI.isTypeLegal(SrcVT)) 1258 return false; 1259 1260 unsigned InputReg = getRegForValue(I->getOperand(0)); 1261 if (!InputReg) 1262 // Unhandled operand. Halt "fast" selection and bail. 1263 return false; 1264 1265 bool InputRegIsKill = hasTrivialKill(I->getOperand(0)); 1266 1267 unsigned ResultReg = fastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), 1268 Opcode, InputReg, InputRegIsKill); 1269 if (!ResultReg) 1270 return false; 1271 1272 updateValueMap(I, ResultReg); 1273 return true; 1274 } 1275 1276 bool FastISel::selectBitCast(const User *I) { 1277 // If the bitcast doesn't change the type, just use the operand value. 1278 if (I->getType() == I->getOperand(0)->getType()) { 1279 unsigned Reg = getRegForValue(I->getOperand(0)); 1280 if (!Reg) 1281 return false; 1282 updateValueMap(I, Reg); 1283 return true; 1284 } 1285 1286 // Bitcasts of other values become reg-reg copies or BITCAST operators. 1287 EVT SrcEVT = TLI.getValueType(DL, I->getOperand(0)->getType()); 1288 EVT DstEVT = TLI.getValueType(DL, I->getType()); 1289 if (SrcEVT == MVT::Other || DstEVT == MVT::Other || 1290 !TLI.isTypeLegal(SrcEVT) || !TLI.isTypeLegal(DstEVT)) 1291 // Unhandled type. Halt "fast" selection and bail. 1292 return false; 1293 1294 MVT SrcVT = SrcEVT.getSimpleVT(); 1295 MVT DstVT = DstEVT.getSimpleVT(); 1296 unsigned Op0 = getRegForValue(I->getOperand(0)); 1297 if (!Op0) // Unhandled operand. Halt "fast" selection and bail. 1298 return false; 1299 bool Op0IsKill = hasTrivialKill(I->getOperand(0)); 1300 1301 // First, try to perform the bitcast by inserting a reg-reg copy. 1302 unsigned ResultReg = 0; 1303 if (SrcVT == DstVT) { 1304 const TargetRegisterClass *SrcClass = TLI.getRegClassFor(SrcVT); 1305 const TargetRegisterClass *DstClass = TLI.getRegClassFor(DstVT); 1306 // Don't attempt a cross-class copy. It will likely fail. 1307 if (SrcClass == DstClass) { 1308 ResultReg = createResultReg(DstClass); 1309 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1310 TII.get(TargetOpcode::COPY), ResultReg).addReg(Op0); 1311 } 1312 } 1313 1314 // If the reg-reg copy failed, select a BITCAST opcode. 1315 if (!ResultReg) 1316 ResultReg = fastEmit_r(SrcVT, DstVT, ISD::BITCAST, Op0, Op0IsKill); 1317 1318 if (!ResultReg) 1319 return false; 1320 1321 updateValueMap(I, ResultReg); 1322 return true; 1323 } 1324 1325 bool FastISel::selectInstruction(const Instruction *I) { 1326 // Just before the terminator instruction, insert instructions to 1327 // feed PHI nodes in successor blocks. 1328 if (isa<TerminatorInst>(I)) 1329 if (!handlePHINodesInSuccessorBlocks(I->getParent())) 1330 return false; 1331 1332 DbgLoc = I->getDebugLoc(); 1333 1334 SavedInsertPt = FuncInfo.InsertPt; 1335 1336 if (const auto *Call = dyn_cast<CallInst>(I)) { 1337 const Function *F = Call->getCalledFunction(); 1338 LibFunc::Func Func; 1339 1340 // As a special case, don't handle calls to builtin library functions that 1341 // may be translated directly to target instructions. 1342 if (F && !F->hasLocalLinkage() && F->hasName() && 1343 LibInfo->getLibFunc(F->getName(), Func) && 1344 LibInfo->hasOptimizedCodeGen(Func)) 1345 return false; 1346 1347 // Don't handle Intrinsic::trap if a trap funciton is specified. 1348 if (F && F->getIntrinsicID() == Intrinsic::trap && 1349 Call->hasFnAttr("trap-func-name")) 1350 return false; 1351 } 1352 1353 // First, try doing target-independent selection. 1354 if (!SkipTargetIndependentISel) { 1355 if (selectOperator(I, I->getOpcode())) { 1356 ++NumFastIselSuccessIndependent; 1357 DbgLoc = DebugLoc(); 1358 return true; 1359 } 1360 // Remove dead code. 1361 recomputeInsertPt(); 1362 if (SavedInsertPt != FuncInfo.InsertPt) 1363 removeDeadCode(FuncInfo.InsertPt, SavedInsertPt); 1364 SavedInsertPt = FuncInfo.InsertPt; 1365 } 1366 // Next, try calling the target to attempt to handle the instruction. 1367 if (fastSelectInstruction(I)) { 1368 ++NumFastIselSuccessTarget; 1369 DbgLoc = DebugLoc(); 1370 return true; 1371 } 1372 // Remove dead code. 1373 recomputeInsertPt(); 1374 if (SavedInsertPt != FuncInfo.InsertPt) 1375 removeDeadCode(FuncInfo.InsertPt, SavedInsertPt); 1376 1377 DbgLoc = DebugLoc(); 1378 // Undo phi node updates, because they will be added again by SelectionDAG. 1379 if (isa<TerminatorInst>(I)) 1380 FuncInfo.PHINodesToUpdate.resize(FuncInfo.OrigNumPHINodesToUpdate); 1381 return false; 1382 } 1383 1384 /// Emit an unconditional branch to the given block, unless it is the immediate 1385 /// (fall-through) successor, and update the CFG. 1386 void FastISel::fastEmitBranch(MachineBasicBlock *MSucc, DebugLoc DbgLoc) { 1387 if (FuncInfo.MBB->getBasicBlock()->size() > 1 && 1388 FuncInfo.MBB->isLayoutSuccessor(MSucc)) { 1389 // For more accurate line information if this is the only instruction 1390 // in the block then emit it, otherwise we have the unconditional 1391 // fall-through case, which needs no instructions. 1392 } else { 1393 // The unconditional branch case. 1394 TII.InsertBranch(*FuncInfo.MBB, MSucc, nullptr, 1395 SmallVector<MachineOperand, 0>(), DbgLoc); 1396 } 1397 uint32_t BranchWeight = 0; 1398 if (FuncInfo.BPI) 1399 BranchWeight = FuncInfo.BPI->getEdgeWeight(FuncInfo.MBB->getBasicBlock(), 1400 MSucc->getBasicBlock()); 1401 FuncInfo.MBB->addSuccessor(MSucc, BranchWeight); 1402 } 1403 1404 void FastISel::finishCondBranch(const BasicBlock *BranchBB, 1405 MachineBasicBlock *TrueMBB, 1406 MachineBasicBlock *FalseMBB) { 1407 uint32_t BranchWeight = 0; 1408 if (FuncInfo.BPI) 1409 BranchWeight = FuncInfo.BPI->getEdgeWeight(BranchBB, 1410 TrueMBB->getBasicBlock()); 1411 // Add TrueMBB as successor unless it is equal to the FalseMBB: This can 1412 // happen in degenerate IR and MachineIR forbids to have a block twice in the 1413 // successor/predecessor lists. 1414 if (TrueMBB != FalseMBB) 1415 FuncInfo.MBB->addSuccessor(TrueMBB, BranchWeight); 1416 1417 fastEmitBranch(FalseMBB, DbgLoc); 1418 } 1419 1420 /// Emit an FNeg operation. 1421 bool FastISel::selectFNeg(const User *I) { 1422 unsigned OpReg = getRegForValue(BinaryOperator::getFNegArgument(I)); 1423 if (!OpReg) 1424 return false; 1425 bool OpRegIsKill = hasTrivialKill(I); 1426 1427 // If the target has ISD::FNEG, use it. 1428 EVT VT = TLI.getValueType(DL, I->getType()); 1429 unsigned ResultReg = fastEmit_r(VT.getSimpleVT(), VT.getSimpleVT(), ISD::FNEG, 1430 OpReg, OpRegIsKill); 1431 if (ResultReg) { 1432 updateValueMap(I, ResultReg); 1433 return true; 1434 } 1435 1436 // Bitcast the value to integer, twiddle the sign bit with xor, 1437 // and then bitcast it back to floating-point. 1438 if (VT.getSizeInBits() > 64) 1439 return false; 1440 EVT IntVT = EVT::getIntegerVT(I->getContext(), VT.getSizeInBits()); 1441 if (!TLI.isTypeLegal(IntVT)) 1442 return false; 1443 1444 unsigned IntReg = fastEmit_r(VT.getSimpleVT(), IntVT.getSimpleVT(), 1445 ISD::BITCAST, OpReg, OpRegIsKill); 1446 if (!IntReg) 1447 return false; 1448 1449 unsigned IntResultReg = fastEmit_ri_( 1450 IntVT.getSimpleVT(), ISD::XOR, IntReg, /*IsKill=*/true, 1451 UINT64_C(1) << (VT.getSizeInBits() - 1), IntVT.getSimpleVT()); 1452 if (!IntResultReg) 1453 return false; 1454 1455 ResultReg = fastEmit_r(IntVT.getSimpleVT(), VT.getSimpleVT(), ISD::BITCAST, 1456 IntResultReg, /*IsKill=*/true); 1457 if (!ResultReg) 1458 return false; 1459 1460 updateValueMap(I, ResultReg); 1461 return true; 1462 } 1463 1464 bool FastISel::selectExtractValue(const User *U) { 1465 const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(U); 1466 if (!EVI) 1467 return false; 1468 1469 // Make sure we only try to handle extracts with a legal result. But also 1470 // allow i1 because it's easy. 1471 EVT RealVT = TLI.getValueType(DL, EVI->getType(), /*AllowUnknown=*/true); 1472 if (!RealVT.isSimple()) 1473 return false; 1474 MVT VT = RealVT.getSimpleVT(); 1475 if (!TLI.isTypeLegal(VT) && VT != MVT::i1) 1476 return false; 1477 1478 const Value *Op0 = EVI->getOperand(0); 1479 Type *AggTy = Op0->getType(); 1480 1481 // Get the base result register. 1482 unsigned ResultReg; 1483 DenseMap<const Value *, unsigned>::iterator I = FuncInfo.ValueMap.find(Op0); 1484 if (I != FuncInfo.ValueMap.end()) 1485 ResultReg = I->second; 1486 else if (isa<Instruction>(Op0)) 1487 ResultReg = FuncInfo.InitializeRegForValue(Op0); 1488 else 1489 return false; // fast-isel can't handle aggregate constants at the moment 1490 1491 // Get the actual result register, which is an offset from the base register. 1492 unsigned VTIndex = ComputeLinearIndex(AggTy, EVI->getIndices()); 1493 1494 SmallVector<EVT, 4> AggValueVTs; 1495 ComputeValueVTs(TLI, DL, AggTy, AggValueVTs); 1496 1497 for (unsigned i = 0; i < VTIndex; i++) 1498 ResultReg += TLI.getNumRegisters(FuncInfo.Fn->getContext(), AggValueVTs[i]); 1499 1500 updateValueMap(EVI, ResultReg); 1501 return true; 1502 } 1503 1504 bool FastISel::selectOperator(const User *I, unsigned Opcode) { 1505 switch (Opcode) { 1506 case Instruction::Add: 1507 return selectBinaryOp(I, ISD::ADD); 1508 case Instruction::FAdd: 1509 return selectBinaryOp(I, ISD::FADD); 1510 case Instruction::Sub: 1511 return selectBinaryOp(I, ISD::SUB); 1512 case Instruction::FSub: 1513 // FNeg is currently represented in LLVM IR as a special case of FSub. 1514 if (BinaryOperator::isFNeg(I)) 1515 return selectFNeg(I); 1516 return selectBinaryOp(I, ISD::FSUB); 1517 case Instruction::Mul: 1518 return selectBinaryOp(I, ISD::MUL); 1519 case Instruction::FMul: 1520 return selectBinaryOp(I, ISD::FMUL); 1521 case Instruction::SDiv: 1522 return selectBinaryOp(I, ISD::SDIV); 1523 case Instruction::UDiv: 1524 return selectBinaryOp(I, ISD::UDIV); 1525 case Instruction::FDiv: 1526 return selectBinaryOp(I, ISD::FDIV); 1527 case Instruction::SRem: 1528 return selectBinaryOp(I, ISD::SREM); 1529 case Instruction::URem: 1530 return selectBinaryOp(I, ISD::UREM); 1531 case Instruction::FRem: 1532 return selectBinaryOp(I, ISD::FREM); 1533 case Instruction::Shl: 1534 return selectBinaryOp(I, ISD::SHL); 1535 case Instruction::LShr: 1536 return selectBinaryOp(I, ISD::SRL); 1537 case Instruction::AShr: 1538 return selectBinaryOp(I, ISD::SRA); 1539 case Instruction::And: 1540 return selectBinaryOp(I, ISD::AND); 1541 case Instruction::Or: 1542 return selectBinaryOp(I, ISD::OR); 1543 case Instruction::Xor: 1544 return selectBinaryOp(I, ISD::XOR); 1545 1546 case Instruction::GetElementPtr: 1547 return selectGetElementPtr(I); 1548 1549 case Instruction::Br: { 1550 const BranchInst *BI = cast<BranchInst>(I); 1551 1552 if (BI->isUnconditional()) { 1553 const BasicBlock *LLVMSucc = BI->getSuccessor(0); 1554 MachineBasicBlock *MSucc = FuncInfo.MBBMap[LLVMSucc]; 1555 fastEmitBranch(MSucc, BI->getDebugLoc()); 1556 return true; 1557 } 1558 1559 // Conditional branches are not handed yet. 1560 // Halt "fast" selection and bail. 1561 return false; 1562 } 1563 1564 case Instruction::Unreachable: 1565 if (TM.Options.TrapUnreachable) 1566 return fastEmit_(MVT::Other, MVT::Other, ISD::TRAP) != 0; 1567 else 1568 return true; 1569 1570 case Instruction::Alloca: 1571 // FunctionLowering has the static-sized case covered. 1572 if (FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(I))) 1573 return true; 1574 1575 // Dynamic-sized alloca is not handled yet. 1576 return false; 1577 1578 case Instruction::Call: 1579 return selectCall(I); 1580 1581 case Instruction::BitCast: 1582 return selectBitCast(I); 1583 1584 case Instruction::FPToSI: 1585 return selectCast(I, ISD::FP_TO_SINT); 1586 case Instruction::ZExt: 1587 return selectCast(I, ISD::ZERO_EXTEND); 1588 case Instruction::SExt: 1589 return selectCast(I, ISD::SIGN_EXTEND); 1590 case Instruction::Trunc: 1591 return selectCast(I, ISD::TRUNCATE); 1592 case Instruction::SIToFP: 1593 return selectCast(I, ISD::SINT_TO_FP); 1594 1595 case Instruction::IntToPtr: // Deliberate fall-through. 1596 case Instruction::PtrToInt: { 1597 EVT SrcVT = TLI.getValueType(DL, I->getOperand(0)->getType()); 1598 EVT DstVT = TLI.getValueType(DL, I->getType()); 1599 if (DstVT.bitsGT(SrcVT)) 1600 return selectCast(I, ISD::ZERO_EXTEND); 1601 if (DstVT.bitsLT(SrcVT)) 1602 return selectCast(I, ISD::TRUNCATE); 1603 unsigned Reg = getRegForValue(I->getOperand(0)); 1604 if (!Reg) 1605 return false; 1606 updateValueMap(I, Reg); 1607 return true; 1608 } 1609 1610 case Instruction::ExtractValue: 1611 return selectExtractValue(I); 1612 1613 case Instruction::PHI: 1614 llvm_unreachable("FastISel shouldn't visit PHI nodes!"); 1615 1616 default: 1617 // Unhandled instruction. Halt "fast" selection and bail. 1618 return false; 1619 } 1620 } 1621 1622 FastISel::FastISel(FunctionLoweringInfo &FuncInfo, 1623 const TargetLibraryInfo *LibInfo, 1624 bool SkipTargetIndependentISel) 1625 : FuncInfo(FuncInfo), MF(FuncInfo.MF), MRI(FuncInfo.MF->getRegInfo()), 1626 MFI(*FuncInfo.MF->getFrameInfo()), MCP(*FuncInfo.MF->getConstantPool()), 1627 TM(FuncInfo.MF->getTarget()), DL(MF->getDataLayout()), 1628 TII(*MF->getSubtarget().getInstrInfo()), 1629 TLI(*MF->getSubtarget().getTargetLowering()), 1630 TRI(*MF->getSubtarget().getRegisterInfo()), LibInfo(LibInfo), 1631 SkipTargetIndependentISel(SkipTargetIndependentISel) {} 1632 1633 FastISel::~FastISel() {} 1634 1635 bool FastISel::fastLowerArguments() { return false; } 1636 1637 bool FastISel::fastLowerCall(CallLoweringInfo & /*CLI*/) { return false; } 1638 1639 bool FastISel::fastLowerIntrinsicCall(const IntrinsicInst * /*II*/) { 1640 return false; 1641 } 1642 1643 unsigned FastISel::fastEmit_(MVT, MVT, unsigned) { return 0; } 1644 1645 unsigned FastISel::fastEmit_r(MVT, MVT, unsigned, unsigned /*Op0*/, 1646 bool /*Op0IsKill*/) { 1647 return 0; 1648 } 1649 1650 unsigned FastISel::fastEmit_rr(MVT, MVT, unsigned, unsigned /*Op0*/, 1651 bool /*Op0IsKill*/, unsigned /*Op1*/, 1652 bool /*Op1IsKill*/) { 1653 return 0; 1654 } 1655 1656 unsigned FastISel::fastEmit_i(MVT, MVT, unsigned, uint64_t /*Imm*/) { 1657 return 0; 1658 } 1659 1660 unsigned FastISel::fastEmit_f(MVT, MVT, unsigned, 1661 const ConstantFP * /*FPImm*/) { 1662 return 0; 1663 } 1664 1665 unsigned FastISel::fastEmit_ri(MVT, MVT, unsigned, unsigned /*Op0*/, 1666 bool /*Op0IsKill*/, uint64_t /*Imm*/) { 1667 return 0; 1668 } 1669 1670 unsigned FastISel::fastEmit_rf(MVT, MVT, unsigned, unsigned /*Op0*/, 1671 bool /*Op0IsKill*/, 1672 const ConstantFP * /*FPImm*/) { 1673 return 0; 1674 } 1675 1676 unsigned FastISel::fastEmit_rri(MVT, MVT, unsigned, unsigned /*Op0*/, 1677 bool /*Op0IsKill*/, unsigned /*Op1*/, 1678 bool /*Op1IsKill*/, uint64_t /*Imm*/) { 1679 return 0; 1680 } 1681 1682 /// This method is a wrapper of fastEmit_ri. It first tries to emit an 1683 /// instruction with an immediate operand using fastEmit_ri. 1684 /// If that fails, it materializes the immediate into a register and try 1685 /// fastEmit_rr instead. 1686 unsigned FastISel::fastEmit_ri_(MVT VT, unsigned Opcode, unsigned Op0, 1687 bool Op0IsKill, uint64_t Imm, MVT ImmType) { 1688 // If this is a multiply by a power of two, emit this as a shift left. 1689 if (Opcode == ISD::MUL && isPowerOf2_64(Imm)) { 1690 Opcode = ISD::SHL; 1691 Imm = Log2_64(Imm); 1692 } else if (Opcode == ISD::UDIV && isPowerOf2_64(Imm)) { 1693 // div x, 8 -> srl x, 3 1694 Opcode = ISD::SRL; 1695 Imm = Log2_64(Imm); 1696 } 1697 1698 // Horrible hack (to be removed), check to make sure shift amounts are 1699 // in-range. 1700 if ((Opcode == ISD::SHL || Opcode == ISD::SRA || Opcode == ISD::SRL) && 1701 Imm >= VT.getSizeInBits()) 1702 return 0; 1703 1704 // First check if immediate type is legal. If not, we can't use the ri form. 1705 unsigned ResultReg = fastEmit_ri(VT, VT, Opcode, Op0, Op0IsKill, Imm); 1706 if (ResultReg) 1707 return ResultReg; 1708 unsigned MaterialReg = fastEmit_i(ImmType, ImmType, ISD::Constant, Imm); 1709 bool IsImmKill = true; 1710 if (!MaterialReg) { 1711 // This is a bit ugly/slow, but failing here means falling out of 1712 // fast-isel, which would be very slow. 1713 IntegerType *ITy = 1714 IntegerType::get(FuncInfo.Fn->getContext(), VT.getSizeInBits()); 1715 MaterialReg = getRegForValue(ConstantInt::get(ITy, Imm)); 1716 if (!MaterialReg) 1717 return 0; 1718 // FIXME: If the materialized register here has no uses yet then this 1719 // will be the first use and we should be able to mark it as killed. 1720 // However, the local value area for materialising constant expressions 1721 // grows down, not up, which means that any constant expressions we generate 1722 // later which also use 'Imm' could be after this instruction and therefore 1723 // after this kill. 1724 IsImmKill = false; 1725 } 1726 return fastEmit_rr(VT, VT, Opcode, Op0, Op0IsKill, MaterialReg, IsImmKill); 1727 } 1728 1729 unsigned FastISel::createResultReg(const TargetRegisterClass *RC) { 1730 return MRI.createVirtualRegister(RC); 1731 } 1732 1733 unsigned FastISel::constrainOperandRegClass(const MCInstrDesc &II, unsigned Op, 1734 unsigned OpNum) { 1735 if (TargetRegisterInfo::isVirtualRegister(Op)) { 1736 const TargetRegisterClass *RegClass = 1737 TII.getRegClass(II, OpNum, &TRI, *FuncInfo.MF); 1738 if (!MRI.constrainRegClass(Op, RegClass)) { 1739 // If it's not legal to COPY between the register classes, something 1740 // has gone very wrong before we got here. 1741 unsigned NewOp = createResultReg(RegClass); 1742 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1743 TII.get(TargetOpcode::COPY), NewOp).addReg(Op); 1744 return NewOp; 1745 } 1746 } 1747 return Op; 1748 } 1749 1750 unsigned FastISel::fastEmitInst_(unsigned MachineInstOpcode, 1751 const TargetRegisterClass *RC) { 1752 unsigned ResultReg = createResultReg(RC); 1753 const MCInstrDesc &II = TII.get(MachineInstOpcode); 1754 1755 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg); 1756 return ResultReg; 1757 } 1758 1759 unsigned FastISel::fastEmitInst_r(unsigned MachineInstOpcode, 1760 const TargetRegisterClass *RC, unsigned Op0, 1761 bool Op0IsKill) { 1762 const MCInstrDesc &II = TII.get(MachineInstOpcode); 1763 1764 unsigned ResultReg = createResultReg(RC); 1765 Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); 1766 1767 if (II.getNumDefs() >= 1) 1768 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) 1769 .addReg(Op0, getKillRegState(Op0IsKill)); 1770 else { 1771 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 1772 .addReg(Op0, getKillRegState(Op0IsKill)); 1773 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1774 TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); 1775 } 1776 1777 return ResultReg; 1778 } 1779 1780 unsigned FastISel::fastEmitInst_rr(unsigned MachineInstOpcode, 1781 const TargetRegisterClass *RC, unsigned Op0, 1782 bool Op0IsKill, unsigned Op1, 1783 bool Op1IsKill) { 1784 const MCInstrDesc &II = TII.get(MachineInstOpcode); 1785 1786 unsigned ResultReg = createResultReg(RC); 1787 Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); 1788 Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1); 1789 1790 if (II.getNumDefs() >= 1) 1791 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) 1792 .addReg(Op0, getKillRegState(Op0IsKill)) 1793 .addReg(Op1, getKillRegState(Op1IsKill)); 1794 else { 1795 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 1796 .addReg(Op0, getKillRegState(Op0IsKill)) 1797 .addReg(Op1, getKillRegState(Op1IsKill)); 1798 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1799 TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); 1800 } 1801 return ResultReg; 1802 } 1803 1804 unsigned FastISel::fastEmitInst_rrr(unsigned MachineInstOpcode, 1805 const TargetRegisterClass *RC, unsigned Op0, 1806 bool Op0IsKill, unsigned Op1, 1807 bool Op1IsKill, unsigned Op2, 1808 bool Op2IsKill) { 1809 const MCInstrDesc &II = TII.get(MachineInstOpcode); 1810 1811 unsigned ResultReg = createResultReg(RC); 1812 Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); 1813 Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1); 1814 Op2 = constrainOperandRegClass(II, Op2, II.getNumDefs() + 2); 1815 1816 if (II.getNumDefs() >= 1) 1817 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) 1818 .addReg(Op0, getKillRegState(Op0IsKill)) 1819 .addReg(Op1, getKillRegState(Op1IsKill)) 1820 .addReg(Op2, getKillRegState(Op2IsKill)); 1821 else { 1822 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 1823 .addReg(Op0, getKillRegState(Op0IsKill)) 1824 .addReg(Op1, getKillRegState(Op1IsKill)) 1825 .addReg(Op2, getKillRegState(Op2IsKill)); 1826 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1827 TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); 1828 } 1829 return ResultReg; 1830 } 1831 1832 unsigned FastISel::fastEmitInst_ri(unsigned MachineInstOpcode, 1833 const TargetRegisterClass *RC, unsigned Op0, 1834 bool Op0IsKill, uint64_t Imm) { 1835 const MCInstrDesc &II = TII.get(MachineInstOpcode); 1836 1837 unsigned ResultReg = createResultReg(RC); 1838 Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); 1839 1840 if (II.getNumDefs() >= 1) 1841 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) 1842 .addReg(Op0, getKillRegState(Op0IsKill)) 1843 .addImm(Imm); 1844 else { 1845 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 1846 .addReg(Op0, getKillRegState(Op0IsKill)) 1847 .addImm(Imm); 1848 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1849 TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); 1850 } 1851 return ResultReg; 1852 } 1853 1854 unsigned FastISel::fastEmitInst_rii(unsigned MachineInstOpcode, 1855 const TargetRegisterClass *RC, unsigned Op0, 1856 bool Op0IsKill, uint64_t Imm1, 1857 uint64_t Imm2) { 1858 const MCInstrDesc &II = TII.get(MachineInstOpcode); 1859 1860 unsigned ResultReg = createResultReg(RC); 1861 Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); 1862 1863 if (II.getNumDefs() >= 1) 1864 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) 1865 .addReg(Op0, getKillRegState(Op0IsKill)) 1866 .addImm(Imm1) 1867 .addImm(Imm2); 1868 else { 1869 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 1870 .addReg(Op0, getKillRegState(Op0IsKill)) 1871 .addImm(Imm1) 1872 .addImm(Imm2); 1873 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1874 TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); 1875 } 1876 return ResultReg; 1877 } 1878 1879 unsigned FastISel::fastEmitInst_f(unsigned MachineInstOpcode, 1880 const TargetRegisterClass *RC, 1881 const ConstantFP *FPImm) { 1882 const MCInstrDesc &II = TII.get(MachineInstOpcode); 1883 1884 unsigned ResultReg = createResultReg(RC); 1885 1886 if (II.getNumDefs() >= 1) 1887 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) 1888 .addFPImm(FPImm); 1889 else { 1890 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 1891 .addFPImm(FPImm); 1892 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1893 TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); 1894 } 1895 return ResultReg; 1896 } 1897 1898 unsigned FastISel::fastEmitInst_rri(unsigned MachineInstOpcode, 1899 const TargetRegisterClass *RC, unsigned Op0, 1900 bool Op0IsKill, unsigned Op1, 1901 bool Op1IsKill, uint64_t Imm) { 1902 const MCInstrDesc &II = TII.get(MachineInstOpcode); 1903 1904 unsigned ResultReg = createResultReg(RC); 1905 Op0 = constrainOperandRegClass(II, Op0, II.getNumDefs()); 1906 Op1 = constrainOperandRegClass(II, Op1, II.getNumDefs() + 1); 1907 1908 if (II.getNumDefs() >= 1) 1909 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) 1910 .addReg(Op0, getKillRegState(Op0IsKill)) 1911 .addReg(Op1, getKillRegState(Op1IsKill)) 1912 .addImm(Imm); 1913 else { 1914 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II) 1915 .addReg(Op0, getKillRegState(Op0IsKill)) 1916 .addReg(Op1, getKillRegState(Op1IsKill)) 1917 .addImm(Imm); 1918 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1919 TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); 1920 } 1921 return ResultReg; 1922 } 1923 1924 unsigned FastISel::fastEmitInst_i(unsigned MachineInstOpcode, 1925 const TargetRegisterClass *RC, uint64_t Imm) { 1926 unsigned ResultReg = createResultReg(RC); 1927 const MCInstrDesc &II = TII.get(MachineInstOpcode); 1928 1929 if (II.getNumDefs() >= 1) 1930 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg) 1931 .addImm(Imm); 1932 else { 1933 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II).addImm(Imm); 1934 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, 1935 TII.get(TargetOpcode::COPY), ResultReg).addReg(II.ImplicitDefs[0]); 1936 } 1937 return ResultReg; 1938 } 1939 1940 unsigned FastISel::fastEmitInst_extractsubreg(MVT RetVT, unsigned Op0, 1941 bool Op0IsKill, uint32_t Idx) { 1942 unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT)); 1943 assert(TargetRegisterInfo::isVirtualRegister(Op0) && 1944 "Cannot yet extract from physregs"); 1945 const TargetRegisterClass *RC = MRI.getRegClass(Op0); 1946 MRI.constrainRegClass(Op0, TRI.getSubClassWithSubReg(RC, Idx)); 1947 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TargetOpcode::COPY), 1948 ResultReg).addReg(Op0, getKillRegState(Op0IsKill), Idx); 1949 return ResultReg; 1950 } 1951 1952 /// Emit MachineInstrs to compute the value of Op with all but the least 1953 /// significant bit set to zero. 1954 unsigned FastISel::fastEmitZExtFromI1(MVT VT, unsigned Op0, bool Op0IsKill) { 1955 return fastEmit_ri(VT, VT, ISD::AND, Op0, Op0IsKill, 1); 1956 } 1957 1958 /// HandlePHINodesInSuccessorBlocks - Handle PHI nodes in successor blocks. 1959 /// Emit code to ensure constants are copied into registers when needed. 1960 /// Remember the virtual registers that need to be added to the Machine PHI 1961 /// nodes as input. We cannot just directly add them, because expansion 1962 /// might result in multiple MBB's for one BB. As such, the start of the 1963 /// BB might correspond to a different MBB than the end. 1964 bool FastISel::handlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB) { 1965 const TerminatorInst *TI = LLVMBB->getTerminator(); 1966 1967 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; 1968 FuncInfo.OrigNumPHINodesToUpdate = FuncInfo.PHINodesToUpdate.size(); 1969 1970 // Check successor nodes' PHI nodes that expect a constant to be available 1971 // from this block. 1972 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { 1973 const BasicBlock *SuccBB = TI->getSuccessor(succ); 1974 if (!isa<PHINode>(SuccBB->begin())) 1975 continue; 1976 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB]; 1977 1978 // If this terminator has multiple identical successors (common for 1979 // switches), only handle each succ once. 1980 if (!SuccsHandled.insert(SuccMBB).second) 1981 continue; 1982 1983 MachineBasicBlock::iterator MBBI = SuccMBB->begin(); 1984 1985 // At this point we know that there is a 1-1 correspondence between LLVM PHI 1986 // nodes and Machine PHI nodes, but the incoming operands have not been 1987 // emitted yet. 1988 for (BasicBlock::const_iterator I = SuccBB->begin(); 1989 const auto *PN = dyn_cast<PHINode>(I); ++I) { 1990 1991 // Ignore dead phi's. 1992 if (PN->use_empty()) 1993 continue; 1994 1995 // Only handle legal types. Two interesting things to note here. First, 1996 // by bailing out early, we may leave behind some dead instructions, 1997 // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its 1998 // own moves. Second, this check is necessary because FastISel doesn't 1999 // use CreateRegs to create registers, so it always creates 2000 // exactly one register for each non-void instruction. 2001 EVT VT = TLI.getValueType(DL, PN->getType(), /*AllowUnknown=*/true); 2002 if (VT == MVT::Other || !TLI.isTypeLegal(VT)) { 2003 // Handle integer promotions, though, because they're common and easy. 2004 if (!(VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16)) { 2005 FuncInfo.PHINodesToUpdate.resize(FuncInfo.OrigNumPHINodesToUpdate); 2006 return false; 2007 } 2008 } 2009 2010 const Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); 2011 2012 // Set the DebugLoc for the copy. Prefer the location of the operand 2013 // if there is one; use the location of the PHI otherwise. 2014 DbgLoc = PN->getDebugLoc(); 2015 if (const auto *Inst = dyn_cast<Instruction>(PHIOp)) 2016 DbgLoc = Inst->getDebugLoc(); 2017 2018 unsigned Reg = getRegForValue(PHIOp); 2019 if (!Reg) { 2020 FuncInfo.PHINodesToUpdate.resize(FuncInfo.OrigNumPHINodesToUpdate); 2021 return false; 2022 } 2023 FuncInfo.PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg)); 2024 DbgLoc = DebugLoc(); 2025 } 2026 } 2027 2028 return true; 2029 } 2030 2031 bool FastISel::tryToFoldLoad(const LoadInst *LI, const Instruction *FoldInst) { 2032 assert(LI->hasOneUse() && 2033 "tryToFoldLoad expected a LoadInst with a single use"); 2034 // We know that the load has a single use, but don't know what it is. If it 2035 // isn't one of the folded instructions, then we can't succeed here. Handle 2036 // this by scanning the single-use users of the load until we get to FoldInst. 2037 unsigned MaxUsers = 6; // Don't scan down huge single-use chains of instrs. 2038 2039 const Instruction *TheUser = LI->user_back(); 2040 while (TheUser != FoldInst && // Scan up until we find FoldInst. 2041 // Stay in the right block. 2042 TheUser->getParent() == FoldInst->getParent() && 2043 --MaxUsers) { // Don't scan too far. 2044 // If there are multiple or no uses of this instruction, then bail out. 2045 if (!TheUser->hasOneUse()) 2046 return false; 2047 2048 TheUser = TheUser->user_back(); 2049 } 2050 2051 // If we didn't find the fold instruction, then we failed to collapse the 2052 // sequence. 2053 if (TheUser != FoldInst) 2054 return false; 2055 2056 // Don't try to fold volatile loads. Target has to deal with alignment 2057 // constraints. 2058 if (LI->isVolatile()) 2059 return false; 2060 2061 // Figure out which vreg this is going into. If there is no assigned vreg yet 2062 // then there actually was no reference to it. Perhaps the load is referenced 2063 // by a dead instruction. 2064 unsigned LoadReg = getRegForValue(LI); 2065 if (!LoadReg) 2066 return false; 2067 2068 // We can't fold if this vreg has no uses or more than one use. Multiple uses 2069 // may mean that the instruction got lowered to multiple MIs, or the use of 2070 // the loaded value ended up being multiple operands of the result. 2071 if (!MRI.hasOneUse(LoadReg)) 2072 return false; 2073 2074 MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(LoadReg); 2075 MachineInstr *User = RI->getParent(); 2076 2077 // Set the insertion point properly. Folding the load can cause generation of 2078 // other random instructions (like sign extends) for addressing modes; make 2079 // sure they get inserted in a logical place before the new instruction. 2080 FuncInfo.InsertPt = User; 2081 FuncInfo.MBB = User->getParent(); 2082 2083 // Ask the target to try folding the load. 2084 return tryToFoldLoadIntoMI(User, RI.getOperandNo(), LI); 2085 } 2086 2087 bool FastISel::canFoldAddIntoGEP(const User *GEP, const Value *Add) { 2088 // Must be an add. 2089 if (!isa<AddOperator>(Add)) 2090 return false; 2091 // Type size needs to match. 2092 if (DL.getTypeSizeInBits(GEP->getType()) != 2093 DL.getTypeSizeInBits(Add->getType())) 2094 return false; 2095 // Must be in the same basic block. 2096 if (isa<Instruction>(Add) && 2097 FuncInfo.MBBMap[cast<Instruction>(Add)->getParent()] != FuncInfo.MBB) 2098 return false; 2099 // Must have a constant operand. 2100 return isa<ConstantInt>(cast<AddOperator>(Add)->getOperand(1)); 2101 } 2102 2103 MachineMemOperand * 2104 FastISel::createMachineMemOperandFor(const Instruction *I) const { 2105 const Value *Ptr; 2106 Type *ValTy; 2107 unsigned Alignment; 2108 unsigned Flags; 2109 bool IsVolatile; 2110 2111 if (const auto *LI = dyn_cast<LoadInst>(I)) { 2112 Alignment = LI->getAlignment(); 2113 IsVolatile = LI->isVolatile(); 2114 Flags = MachineMemOperand::MOLoad; 2115 Ptr = LI->getPointerOperand(); 2116 ValTy = LI->getType(); 2117 } else if (const auto *SI = dyn_cast<StoreInst>(I)) { 2118 Alignment = SI->getAlignment(); 2119 IsVolatile = SI->isVolatile(); 2120 Flags = MachineMemOperand::MOStore; 2121 Ptr = SI->getPointerOperand(); 2122 ValTy = SI->getValueOperand()->getType(); 2123 } else 2124 return nullptr; 2125 2126 bool IsNonTemporal = I->getMetadata(LLVMContext::MD_nontemporal) != nullptr; 2127 bool IsInvariant = I->getMetadata(LLVMContext::MD_invariant_load) != nullptr; 2128 const MDNode *Ranges = I->getMetadata(LLVMContext::MD_range); 2129 2130 AAMDNodes AAInfo; 2131 I->getAAMetadata(AAInfo); 2132 2133 if (Alignment == 0) // Ensure that codegen never sees alignment 0. 2134 Alignment = DL.getABITypeAlignment(ValTy); 2135 2136 unsigned Size = DL.getTypeStoreSize(ValTy); 2137 2138 if (IsVolatile) 2139 Flags |= MachineMemOperand::MOVolatile; 2140 if (IsNonTemporal) 2141 Flags |= MachineMemOperand::MONonTemporal; 2142 if (IsInvariant) 2143 Flags |= MachineMemOperand::MOInvariant; 2144 2145 return FuncInfo.MF->getMachineMemOperand(MachinePointerInfo(Ptr), Flags, Size, 2146 Alignment, AAInfo, Ranges); 2147 } 2148 2149 CmpInst::Predicate FastISel::optimizeCmpPredicate(const CmpInst *CI) const { 2150 // If both operands are the same, then try to optimize or fold the cmp. 2151 CmpInst::Predicate Predicate = CI->getPredicate(); 2152 if (CI->getOperand(0) != CI->getOperand(1)) 2153 return Predicate; 2154 2155 switch (Predicate) { 2156 default: llvm_unreachable("Invalid predicate!"); 2157 case CmpInst::FCMP_FALSE: Predicate = CmpInst::FCMP_FALSE; break; 2158 case CmpInst::FCMP_OEQ: Predicate = CmpInst::FCMP_ORD; break; 2159 case CmpInst::FCMP_OGT: Predicate = CmpInst::FCMP_FALSE; break; 2160 case CmpInst::FCMP_OGE: Predicate = CmpInst::FCMP_ORD; break; 2161 case CmpInst::FCMP_OLT: Predicate = CmpInst::FCMP_FALSE; break; 2162 case CmpInst::FCMP_OLE: Predicate = CmpInst::FCMP_ORD; break; 2163 case CmpInst::FCMP_ONE: Predicate = CmpInst::FCMP_FALSE; break; 2164 case CmpInst::FCMP_ORD: Predicate = CmpInst::FCMP_ORD; break; 2165 case CmpInst::FCMP_UNO: Predicate = CmpInst::FCMP_UNO; break; 2166 case CmpInst::FCMP_UEQ: Predicate = CmpInst::FCMP_TRUE; break; 2167 case CmpInst::FCMP_UGT: Predicate = CmpInst::FCMP_UNO; break; 2168 case CmpInst::FCMP_UGE: Predicate = CmpInst::FCMP_TRUE; break; 2169 case CmpInst::FCMP_ULT: Predicate = CmpInst::FCMP_UNO; break; 2170 case CmpInst::FCMP_ULE: Predicate = CmpInst::FCMP_TRUE; break; 2171 case CmpInst::FCMP_UNE: Predicate = CmpInst::FCMP_UNO; break; 2172 case CmpInst::FCMP_TRUE: Predicate = CmpInst::FCMP_TRUE; break; 2173 2174 case CmpInst::ICMP_EQ: Predicate = CmpInst::FCMP_TRUE; break; 2175 case CmpInst::ICMP_NE: Predicate = CmpInst::FCMP_FALSE; break; 2176 case CmpInst::ICMP_UGT: Predicate = CmpInst::FCMP_FALSE; break; 2177 case CmpInst::ICMP_UGE: Predicate = CmpInst::FCMP_TRUE; break; 2178 case CmpInst::ICMP_ULT: Predicate = CmpInst::FCMP_FALSE; break; 2179 case CmpInst::ICMP_ULE: Predicate = CmpInst::FCMP_TRUE; break; 2180 case CmpInst::ICMP_SGT: Predicate = CmpInst::FCMP_FALSE; break; 2181 case CmpInst::ICMP_SGE: Predicate = CmpInst::FCMP_TRUE; break; 2182 case CmpInst::ICMP_SLT: Predicate = CmpInst::FCMP_FALSE; break; 2183 case CmpInst::ICMP_SLE: Predicate = CmpInst::FCMP_TRUE; break; 2184 } 2185 2186 return Predicate; 2187 } 2188