1 //===-- InstrinsicInst.cpp - Intrinsic Instruction Wrappers ---------------===// 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 implements methods that make it really easy to deal with intrinsic 10 // functions. 11 // 12 // All intrinsic function calls are instances of the call instruction, so these 13 // are all subclasses of the CallInst class. Note that none of these classes 14 // has state or virtual methods, which is an important part of this gross/neat 15 // hack working. 16 // 17 // In some cases, arguments to intrinsics need to be generic and are defined as 18 // type pointer to empty struct { }*. To access the real item of interest the 19 // cast instruction needs to be stripped away. 20 // 21 //===----------------------------------------------------------------------===// 22 23 #include "llvm/IR/IntrinsicInst.h" 24 #include "llvm/ADT/StringSwitch.h" 25 #include "llvm/IR/Constants.h" 26 #include "llvm/IR/DebugInfoMetadata.h" 27 #include "llvm/IR/GlobalVariable.h" 28 #include "llvm/IR/Metadata.h" 29 #include "llvm/IR/Module.h" 30 #include "llvm/IR/Operator.h" 31 #include "llvm/IR/PatternMatch.h" 32 #include "llvm/IR/Statepoint.h" 33 34 #include "llvm/Support/raw_ostream.h" 35 using namespace llvm; 36 37 //===----------------------------------------------------------------------===// 38 /// DbgVariableIntrinsic - This is the common base class for debug info 39 /// intrinsics for variables. 40 /// 41 42 iterator_range<DbgVariableIntrinsic::location_op_iterator> 43 DbgVariableIntrinsic::location_ops() const { 44 auto *MD = getRawLocation(); 45 assert(MD && "First operand of DbgVariableIntrinsic should be non-null."); 46 47 // If operand is ValueAsMetadata, return a range over just that operand. 48 if (auto *VAM = dyn_cast<ValueAsMetadata>(MD)) { 49 return {location_op_iterator(VAM), location_op_iterator(VAM + 1)}; 50 } 51 // If operand is DIArgList, return a range over its args. 52 if (auto *AL = dyn_cast<DIArgList>(MD)) 53 return {location_op_iterator(AL->args_begin()), 54 location_op_iterator(AL->args_end())}; 55 // Operand must be an empty metadata tuple, so return empty iterator. 56 return {location_op_iterator(static_cast<ValueAsMetadata *>(nullptr)), 57 location_op_iterator(static_cast<ValueAsMetadata *>(nullptr))}; 58 } 59 60 Value *DbgVariableIntrinsic::getVariableLocationOp(unsigned OpIdx) const { 61 auto *MD = getRawLocation(); 62 assert(MD && "First operand of DbgVariableIntrinsic should be non-null."); 63 if (auto *AL = dyn_cast<DIArgList>(MD)) 64 return AL->getArgs()[OpIdx]->getValue(); 65 if (isa<MDNode>(MD)) 66 return nullptr; 67 assert( 68 isa<ValueAsMetadata>(MD) && 69 "Attempted to get location operand from DbgVariableIntrinsic with none."); 70 auto *V = cast<ValueAsMetadata>(MD); 71 assert(OpIdx == 0 && "Operand Index must be 0 for a debug intrinsic with a " 72 "single location operand."); 73 return V->getValue(); 74 } 75 76 static ValueAsMetadata *getAsMetadata(Value *V) { 77 return isa<MetadataAsValue>(V) ? dyn_cast<ValueAsMetadata>( 78 cast<MetadataAsValue>(V)->getMetadata()) 79 : ValueAsMetadata::get(V); 80 } 81 82 void DbgVariableIntrinsic::replaceVariableLocationOp(Value *OldValue, 83 Value *NewValue) { 84 assert(NewValue && "Values must be non-null"); 85 auto Locations = location_ops(); 86 auto OldIt = find(Locations, OldValue); 87 assert(OldIt != Locations.end() && "OldValue must be a current location"); 88 if (!hasArgList()) { 89 Value *NewOperand = isa<MetadataAsValue>(NewValue) 90 ? NewValue 91 : MetadataAsValue::get( 92 getContext(), ValueAsMetadata::get(NewValue)); 93 return setArgOperand(0, NewOperand); 94 } 95 SmallVector<ValueAsMetadata *, 4> MDs; 96 ValueAsMetadata *NewOperand = getAsMetadata(NewValue); 97 for (auto *VMD : Locations) 98 MDs.push_back(VMD == *OldIt ? NewOperand : getAsMetadata(VMD)); 99 setArgOperand( 100 0, MetadataAsValue::get(getContext(), DIArgList::get(getContext(), MDs))); 101 } 102 void DbgVariableIntrinsic::replaceVariableLocationOp(unsigned OpIdx, 103 Value *NewValue) { 104 assert(OpIdx < getNumVariableLocationOps() && "Invalid Operand Index"); 105 if (!hasArgList()) { 106 Value *NewOperand = isa<MetadataAsValue>(NewValue) 107 ? NewValue 108 : MetadataAsValue::get( 109 getContext(), ValueAsMetadata::get(NewValue)); 110 return setArgOperand(0, NewOperand); 111 } 112 SmallVector<ValueAsMetadata *, 4> MDs; 113 ValueAsMetadata *NewOperand = getAsMetadata(NewValue); 114 for (unsigned Idx = 0; Idx < getNumVariableLocationOps(); ++Idx) 115 MDs.push_back(Idx == OpIdx ? NewOperand 116 : getAsMetadata(getVariableLocationOp(Idx))); 117 setArgOperand( 118 0, MetadataAsValue::get(getContext(), DIArgList::get(getContext(), MDs))); 119 } 120 121 void DbgVariableIntrinsic::addVariableLocationOps(ArrayRef<Value *> NewValues, 122 DIExpression *NewExpr) { 123 assert(NewExpr->hasAllLocationOps(getNumVariableLocationOps() + 124 NewValues.size()) && 125 "NewExpr for debug variable intrinsic does not reference every " 126 "location operand."); 127 assert(!is_contained(NewValues, nullptr) && "New values must be non-null"); 128 setArgOperand(2, MetadataAsValue::get(getContext(), NewExpr)); 129 SmallVector<ValueAsMetadata *, 4> MDs; 130 for (auto *VMD : location_ops()) 131 MDs.push_back(getAsMetadata(VMD)); 132 for (auto *VMD : NewValues) 133 MDs.push_back(getAsMetadata(VMD)); 134 setArgOperand( 135 0, MetadataAsValue::get(getContext(), DIArgList::get(getContext(), MDs))); 136 } 137 138 Optional<uint64_t> DbgVariableIntrinsic::getFragmentSizeInBits() const { 139 if (auto Fragment = getExpression()->getFragmentInfo()) 140 return Fragment->SizeInBits; 141 return getVariable()->getSizeInBits(); 142 } 143 144 int llvm::Intrinsic::lookupLLVMIntrinsicByName(ArrayRef<const char *> NameTable, 145 StringRef Name) { 146 assert(Name.startswith("llvm.")); 147 148 // Do successive binary searches of the dotted name components. For 149 // "llvm.gc.experimental.statepoint.p1i8.p1i32", we will find the range of 150 // intrinsics starting with "llvm.gc", then "llvm.gc.experimental", then 151 // "llvm.gc.experimental.statepoint", and then we will stop as the range is 152 // size 1. During the search, we can skip the prefix that we already know is 153 // identical. By using strncmp we consider names with differing suffixes to 154 // be part of the equal range. 155 size_t CmpEnd = 4; // Skip the "llvm" component. 156 const char *const *Low = NameTable.begin(); 157 const char *const *High = NameTable.end(); 158 const char *const *LastLow = Low; 159 while (CmpEnd < Name.size() && High - Low > 0) { 160 size_t CmpStart = CmpEnd; 161 CmpEnd = Name.find('.', CmpStart + 1); 162 CmpEnd = CmpEnd == StringRef::npos ? Name.size() : CmpEnd; 163 auto Cmp = [CmpStart, CmpEnd](const char *LHS, const char *RHS) { 164 return strncmp(LHS + CmpStart, RHS + CmpStart, CmpEnd - CmpStart) < 0; 165 }; 166 LastLow = Low; 167 std::tie(Low, High) = std::equal_range(Low, High, Name.data(), Cmp); 168 } 169 if (High - Low > 0) 170 LastLow = Low; 171 172 if (LastLow == NameTable.end()) 173 return -1; 174 StringRef NameFound = *LastLow; 175 if (Name == NameFound || 176 (Name.startswith(NameFound) && Name[NameFound.size()] == '.')) 177 return LastLow - NameTable.begin(); 178 return -1; 179 } 180 181 Value *InstrProfIncrementInst::getStep() const { 182 if (InstrProfIncrementInstStep::classof(this)) { 183 return const_cast<Value *>(getArgOperand(4)); 184 } 185 const Module *M = getModule(); 186 LLVMContext &Context = M->getContext(); 187 return ConstantInt::get(Type::getInt64Ty(Context), 1); 188 } 189 190 Optional<RoundingMode> ConstrainedFPIntrinsic::getRoundingMode() const { 191 unsigned NumOperands = getNumArgOperands(); 192 Metadata *MD = 193 cast<MetadataAsValue>(getArgOperand(NumOperands - 2))->getMetadata(); 194 if (!MD || !isa<MDString>(MD)) 195 return None; 196 return StrToRoundingMode(cast<MDString>(MD)->getString()); 197 } 198 199 Optional<fp::ExceptionBehavior> 200 ConstrainedFPIntrinsic::getExceptionBehavior() const { 201 unsigned NumOperands = getNumArgOperands(); 202 Metadata *MD = 203 cast<MetadataAsValue>(getArgOperand(NumOperands - 1))->getMetadata(); 204 if (!MD || !isa<MDString>(MD)) 205 return None; 206 return StrToExceptionBehavior(cast<MDString>(MD)->getString()); 207 } 208 209 FCmpInst::Predicate ConstrainedFPCmpIntrinsic::getPredicate() const { 210 Metadata *MD = cast<MetadataAsValue>(getArgOperand(2))->getMetadata(); 211 if (!MD || !isa<MDString>(MD)) 212 return FCmpInst::BAD_FCMP_PREDICATE; 213 return StringSwitch<FCmpInst::Predicate>(cast<MDString>(MD)->getString()) 214 .Case("oeq", FCmpInst::FCMP_OEQ) 215 .Case("ogt", FCmpInst::FCMP_OGT) 216 .Case("oge", FCmpInst::FCMP_OGE) 217 .Case("olt", FCmpInst::FCMP_OLT) 218 .Case("ole", FCmpInst::FCMP_OLE) 219 .Case("one", FCmpInst::FCMP_ONE) 220 .Case("ord", FCmpInst::FCMP_ORD) 221 .Case("uno", FCmpInst::FCMP_UNO) 222 .Case("ueq", FCmpInst::FCMP_UEQ) 223 .Case("ugt", FCmpInst::FCMP_UGT) 224 .Case("uge", FCmpInst::FCMP_UGE) 225 .Case("ult", FCmpInst::FCMP_ULT) 226 .Case("ule", FCmpInst::FCMP_ULE) 227 .Case("une", FCmpInst::FCMP_UNE) 228 .Default(FCmpInst::BAD_FCMP_PREDICATE); 229 } 230 231 bool ConstrainedFPIntrinsic::isUnaryOp() const { 232 switch (getIntrinsicID()) { 233 default: 234 return false; 235 #define INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC) \ 236 case Intrinsic::INTRINSIC: \ 237 return NARG == 1; 238 #include "llvm/IR/ConstrainedOps.def" 239 } 240 } 241 242 bool ConstrainedFPIntrinsic::isTernaryOp() const { 243 switch (getIntrinsicID()) { 244 default: 245 return false; 246 #define INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC) \ 247 case Intrinsic::INTRINSIC: \ 248 return NARG == 3; 249 #include "llvm/IR/ConstrainedOps.def" 250 } 251 } 252 253 bool ConstrainedFPIntrinsic::classof(const IntrinsicInst *I) { 254 switch (I->getIntrinsicID()) { 255 #define INSTRUCTION(NAME, NARGS, ROUND_MODE, INTRINSIC) \ 256 case Intrinsic::INTRINSIC: 257 #include "llvm/IR/ConstrainedOps.def" 258 return true; 259 default: 260 return false; 261 } 262 } 263 264 ElementCount VPIntrinsic::getStaticVectorLength() const { 265 auto GetVectorLengthOfType = [](const Type *T) -> ElementCount { 266 auto VT = cast<VectorType>(T); 267 auto ElemCount = VT->getElementCount(); 268 return ElemCount; 269 }; 270 271 auto VPMask = getMaskParam(); 272 return GetVectorLengthOfType(VPMask->getType()); 273 } 274 275 Value *VPIntrinsic::getMaskParam() const { 276 auto maskPos = GetMaskParamPos(getIntrinsicID()); 277 if (maskPos) 278 return getArgOperand(maskPos.getValue()); 279 return nullptr; 280 } 281 282 void VPIntrinsic::setMaskParam(Value *NewMask) { 283 auto MaskPos = GetMaskParamPos(getIntrinsicID()); 284 setArgOperand(*MaskPos, NewMask); 285 } 286 287 Value *VPIntrinsic::getVectorLengthParam() const { 288 auto vlenPos = GetVectorLengthParamPos(getIntrinsicID()); 289 if (vlenPos) 290 return getArgOperand(vlenPos.getValue()); 291 return nullptr; 292 } 293 294 void VPIntrinsic::setVectorLengthParam(Value *NewEVL) { 295 auto EVLPos = GetVectorLengthParamPos(getIntrinsicID()); 296 setArgOperand(*EVLPos, NewEVL); 297 } 298 299 Optional<int> VPIntrinsic::GetMaskParamPos(Intrinsic::ID IntrinsicID) { 300 switch (IntrinsicID) { 301 default: 302 return None; 303 304 #define BEGIN_REGISTER_VP_INTRINSIC(VPID, MASKPOS, VLENPOS) \ 305 case Intrinsic::VPID: \ 306 return MASKPOS; 307 #include "llvm/IR/VPIntrinsics.def" 308 } 309 } 310 311 Optional<int> VPIntrinsic::GetVectorLengthParamPos(Intrinsic::ID IntrinsicID) { 312 switch (IntrinsicID) { 313 default: 314 return None; 315 316 #define BEGIN_REGISTER_VP_INTRINSIC(VPID, MASKPOS, VLENPOS) \ 317 case Intrinsic::VPID: \ 318 return VLENPOS; 319 #include "llvm/IR/VPIntrinsics.def" 320 } 321 } 322 323 bool VPIntrinsic::IsVPIntrinsic(Intrinsic::ID ID) { 324 switch (ID) { 325 default: 326 return false; 327 328 #define BEGIN_REGISTER_VP_INTRINSIC(VPID, MASKPOS, VLENPOS) \ 329 case Intrinsic::VPID: \ 330 break; 331 #include "llvm/IR/VPIntrinsics.def" 332 } 333 return true; 334 } 335 336 // Equivalent non-predicated opcode 337 unsigned VPIntrinsic::GetFunctionalOpcodeForVP(Intrinsic::ID ID) { 338 unsigned FunctionalOC = Instruction::Call; 339 switch (ID) { 340 default: 341 break; 342 #define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) case Intrinsic::VPID: 343 #define HANDLE_VP_TO_OPC(OPC) FunctionalOC = Instruction::OPC; 344 #define END_REGISTER_VP_INTRINSIC(...) break; 345 #include "llvm/IR/VPIntrinsics.def" 346 } 347 348 return FunctionalOC; 349 } 350 351 Intrinsic::ID VPIntrinsic::GetForOpcode(unsigned IROPC) { 352 switch (IROPC) { 353 default: 354 return Intrinsic::not_intrinsic; 355 356 #define HANDLE_VP_TO_OPC(OPC) case Instruction::OPC: 357 #define END_REGISTER_VP_INTRINSIC(VPID) return Intrinsic::VPID; 358 #include "llvm/IR/VPIntrinsics.def" 359 } 360 } 361 362 bool VPIntrinsic::canIgnoreVectorLengthParam() const { 363 using namespace PatternMatch; 364 365 ElementCount EC = getStaticVectorLength(); 366 367 // No vlen param - no lanes masked-off by it. 368 auto *VLParam = getVectorLengthParam(); 369 if (!VLParam) 370 return true; 371 372 // Note that the VP intrinsic causes undefined behavior if the Explicit Vector 373 // Length parameter is strictly greater-than the number of vector elements of 374 // the operation. This function returns true when this is detected statically 375 // in the IR. 376 377 // Check whether "W == vscale * EC.getKnownMinValue()" 378 if (EC.isScalable()) { 379 // Undig the DL 380 auto ParMod = this->getModule(); 381 if (!ParMod) 382 return false; 383 const auto &DL = ParMod->getDataLayout(); 384 385 // Compare vscale patterns 386 uint64_t VScaleFactor; 387 if (match(VLParam, m_c_Mul(m_ConstantInt(VScaleFactor), m_VScale(DL)))) 388 return VScaleFactor >= EC.getKnownMinValue(); 389 return (EC.getKnownMinValue() == 1) && match(VLParam, m_VScale(DL)); 390 } 391 392 // standard SIMD operation 393 auto VLConst = dyn_cast<ConstantInt>(VLParam); 394 if (!VLConst) 395 return false; 396 397 uint64_t VLNum = VLConst->getZExtValue(); 398 if (VLNum >= EC.getKnownMinValue()) 399 return true; 400 401 return false; 402 } 403 404 Instruction::BinaryOps BinaryOpIntrinsic::getBinaryOp() const { 405 switch (getIntrinsicID()) { 406 case Intrinsic::uadd_with_overflow: 407 case Intrinsic::sadd_with_overflow: 408 case Intrinsic::uadd_sat: 409 case Intrinsic::sadd_sat: 410 return Instruction::Add; 411 case Intrinsic::usub_with_overflow: 412 case Intrinsic::ssub_with_overflow: 413 case Intrinsic::usub_sat: 414 case Intrinsic::ssub_sat: 415 return Instruction::Sub; 416 case Intrinsic::umul_with_overflow: 417 case Intrinsic::smul_with_overflow: 418 return Instruction::Mul; 419 default: 420 llvm_unreachable("Invalid intrinsic"); 421 } 422 } 423 424 bool BinaryOpIntrinsic::isSigned() const { 425 switch (getIntrinsicID()) { 426 case Intrinsic::sadd_with_overflow: 427 case Intrinsic::ssub_with_overflow: 428 case Intrinsic::smul_with_overflow: 429 case Intrinsic::sadd_sat: 430 case Intrinsic::ssub_sat: 431 return true; 432 default: 433 return false; 434 } 435 } 436 437 unsigned BinaryOpIntrinsic::getNoWrapKind() const { 438 if (isSigned()) 439 return OverflowingBinaryOperator::NoSignedWrap; 440 else 441 return OverflowingBinaryOperator::NoUnsignedWrap; 442 } 443 444 const GCStatepointInst *GCProjectionInst::getStatepoint() const { 445 const Value *Token = getArgOperand(0); 446 447 // This takes care both of relocates for call statepoints and relocates 448 // on normal path of invoke statepoint. 449 if (!isa<LandingPadInst>(Token)) 450 return cast<GCStatepointInst>(Token); 451 452 // This relocate is on exceptional path of an invoke statepoint 453 const BasicBlock *InvokeBB = 454 cast<Instruction>(Token)->getParent()->getUniquePredecessor(); 455 456 assert(InvokeBB && "safepoints should have unique landingpads"); 457 assert(InvokeBB->getTerminator() && 458 "safepoint block should be well formed"); 459 460 return cast<GCStatepointInst>(InvokeBB->getTerminator()); 461 } 462 463 Value *GCRelocateInst::getBasePtr() const { 464 if (auto Opt = getStatepoint()->getOperandBundle(LLVMContext::OB_gc_live)) 465 return *(Opt->Inputs.begin() + getBasePtrIndex()); 466 return *(getStatepoint()->arg_begin() + getBasePtrIndex()); 467 } 468 469 Value *GCRelocateInst::getDerivedPtr() const { 470 if (auto Opt = getStatepoint()->getOperandBundle(LLVMContext::OB_gc_live)) 471 return *(Opt->Inputs.begin() + getDerivedPtrIndex()); 472 return *(getStatepoint()->arg_begin() + getDerivedPtrIndex()); 473 } 474