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