1 //===-- Verifier.cpp - Implement the Module Verifier -----------------------==// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file defines the function verifier interface, that can be used for some 11 // sanity checking of input to the system. 12 // 13 // Note that this does not provide full `Java style' security and verifications, 14 // instead it just tries to ensure that code is well-formed. 15 // 16 // * Both of a binary operator's parameters are of the same type 17 // * Verify that the indices of mem access instructions match other operands 18 // * Verify that arithmetic and other things are only performed on first-class 19 // types. Verify that shifts & logicals only happen on integrals f.e. 20 // * All of the constants in a switch statement are of the correct type 21 // * The code is in valid SSA form 22 // * It should be illegal to put a label into any other type (like a structure) 23 // or to return one. [except constant arrays!] 24 // * Only phi nodes can be self referential: 'add i32 %0, %0 ; <int>:0' is bad 25 // * PHI nodes must have an entry for each predecessor, with no extras. 26 // * PHI nodes must be the first thing in a basic block, all grouped together 27 // * PHI nodes must have at least one entry 28 // * All basic blocks should only end with terminator insts, not contain them 29 // * The entry node to a function must not have predecessors 30 // * All Instructions must be embedded into a basic block 31 // * Functions cannot take a void-typed parameter 32 // * Verify that a function's argument list agrees with it's declared type. 33 // * It is illegal to specify a name for a void value. 34 // * It is illegal to have a internal global value with no initializer 35 // * It is illegal to have a ret instruction that returns a value that does not 36 // agree with the function return value type. 37 // * Function call argument types match the function prototype 38 // * A landing pad is defined by a landingpad instruction, and can be jumped to 39 // only by the unwind edge of an invoke instruction. 40 // * A landingpad instruction must be the first non-PHI instruction in the 41 // block. 42 // * Landingpad instructions must be in a function with a personality function. 43 // * All other things that are tested by asserts spread about the code... 44 // 45 //===----------------------------------------------------------------------===// 46 47 #include "llvm/IR/Verifier.h" 48 #include "llvm/ADT/APFloat.h" 49 #include "llvm/ADT/APInt.h" 50 #include "llvm/ADT/ArrayRef.h" 51 #include "llvm/ADT/DenseMap.h" 52 #include "llvm/ADT/MapVector.h" 53 #include "llvm/ADT/Optional.h" 54 #include "llvm/ADT/STLExtras.h" 55 #include "llvm/ADT/SmallPtrSet.h" 56 #include "llvm/ADT/SmallSet.h" 57 #include "llvm/ADT/SmallVector.h" 58 #include "llvm/ADT/StringExtras.h" 59 #include "llvm/ADT/StringMap.h" 60 #include "llvm/ADT/StringRef.h" 61 #include "llvm/ADT/Twine.h" 62 #include "llvm/ADT/ilist.h" 63 #include "llvm/BinaryFormat/Dwarf.h" 64 #include "llvm/IR/Argument.h" 65 #include "llvm/IR/Attributes.h" 66 #include "llvm/IR/BasicBlock.h" 67 #include "llvm/IR/CFG.h" 68 #include "llvm/IR/CallSite.h" 69 #include "llvm/IR/CallingConv.h" 70 #include "llvm/IR/Comdat.h" 71 #include "llvm/IR/Constant.h" 72 #include "llvm/IR/ConstantRange.h" 73 #include "llvm/IR/Constants.h" 74 #include "llvm/IR/DataLayout.h" 75 #include "llvm/IR/DebugInfo.h" 76 #include "llvm/IR/DebugInfoMetadata.h" 77 #include "llvm/IR/DebugLoc.h" 78 #include "llvm/IR/DerivedTypes.h" 79 #include "llvm/IR/Dominators.h" 80 #include "llvm/IR/Function.h" 81 #include "llvm/IR/GlobalAlias.h" 82 #include "llvm/IR/GlobalValue.h" 83 #include "llvm/IR/GlobalVariable.h" 84 #include "llvm/IR/InlineAsm.h" 85 #include "llvm/IR/InstVisitor.h" 86 #include "llvm/IR/InstrTypes.h" 87 #include "llvm/IR/Instruction.h" 88 #include "llvm/IR/Instructions.h" 89 #include "llvm/IR/IntrinsicInst.h" 90 #include "llvm/IR/Intrinsics.h" 91 #include "llvm/IR/LLVMContext.h" 92 #include "llvm/IR/Metadata.h" 93 #include "llvm/IR/Module.h" 94 #include "llvm/IR/ModuleSlotTracker.h" 95 #include "llvm/IR/PassManager.h" 96 #include "llvm/IR/Statepoint.h" 97 #include "llvm/IR/Type.h" 98 #include "llvm/IR/Use.h" 99 #include "llvm/IR/User.h" 100 #include "llvm/IR/Value.h" 101 #include "llvm/Pass.h" 102 #include "llvm/Support/AtomicOrdering.h" 103 #include "llvm/Support/Casting.h" 104 #include "llvm/Support/CommandLine.h" 105 #include "llvm/Support/Debug.h" 106 #include "llvm/Support/ErrorHandling.h" 107 #include "llvm/Support/MathExtras.h" 108 #include "llvm/Support/raw_ostream.h" 109 #include <algorithm> 110 #include <cassert> 111 #include <cstdint> 112 #include <memory> 113 #include <string> 114 #include <utility> 115 116 using namespace llvm; 117 118 namespace llvm { 119 120 struct VerifierSupport { 121 raw_ostream *OS; 122 const Module &M; 123 ModuleSlotTracker MST; 124 const DataLayout &DL; 125 LLVMContext &Context; 126 127 /// Track the brokenness of the module while recursively visiting. 128 bool Broken = false; 129 /// Broken debug info can be "recovered" from by stripping the debug info. 130 bool BrokenDebugInfo = false; 131 /// Whether to treat broken debug info as an error. 132 bool TreatBrokenDebugInfoAsError = true; 133 134 explicit VerifierSupport(raw_ostream *OS, const Module &M) 135 : OS(OS), M(M), MST(&M), DL(M.getDataLayout()), Context(M.getContext()) {} 136 137 private: 138 void Write(const Module *M) { 139 *OS << "; ModuleID = '" << M->getModuleIdentifier() << "'\n"; 140 } 141 142 void Write(const Value *V) { 143 if (!V) 144 return; 145 if (isa<Instruction>(V)) { 146 V->print(*OS, MST); 147 *OS << '\n'; 148 } else { 149 V->printAsOperand(*OS, true, MST); 150 *OS << '\n'; 151 } 152 } 153 154 void Write(ImmutableCallSite CS) { 155 Write(CS.getInstruction()); 156 } 157 158 void Write(const Metadata *MD) { 159 if (!MD) 160 return; 161 MD->print(*OS, MST, &M); 162 *OS << '\n'; 163 } 164 165 template <class T> void Write(const MDTupleTypedArrayWrapper<T> &MD) { 166 Write(MD.get()); 167 } 168 169 void Write(const NamedMDNode *NMD) { 170 if (!NMD) 171 return; 172 NMD->print(*OS, MST); 173 *OS << '\n'; 174 } 175 176 void Write(Type *T) { 177 if (!T) 178 return; 179 *OS << ' ' << *T; 180 } 181 182 void Write(const Comdat *C) { 183 if (!C) 184 return; 185 *OS << *C; 186 } 187 188 void Write(const APInt *AI) { 189 if (!AI) 190 return; 191 *OS << *AI << '\n'; 192 } 193 194 void Write(const unsigned i) { *OS << i << '\n'; } 195 196 template <typename T> void Write(ArrayRef<T> Vs) { 197 for (const T &V : Vs) 198 Write(V); 199 } 200 201 template <typename T1, typename... Ts> 202 void WriteTs(const T1 &V1, const Ts &... Vs) { 203 Write(V1); 204 WriteTs(Vs...); 205 } 206 207 template <typename... Ts> void WriteTs() {} 208 209 public: 210 /// A check failed, so printout out the condition and the message. 211 /// 212 /// This provides a nice place to put a breakpoint if you want to see why 213 /// something is not correct. 214 void CheckFailed(const Twine &Message) { 215 if (OS) 216 *OS << Message << '\n'; 217 Broken = true; 218 } 219 220 /// A check failed (with values to print). 221 /// 222 /// This calls the Message-only version so that the above is easier to set a 223 /// breakpoint on. 224 template <typename T1, typename... Ts> 225 void CheckFailed(const Twine &Message, const T1 &V1, const Ts &... Vs) { 226 CheckFailed(Message); 227 if (OS) 228 WriteTs(V1, Vs...); 229 } 230 231 /// A debug info check failed. 232 void DebugInfoCheckFailed(const Twine &Message) { 233 if (OS) 234 *OS << Message << '\n'; 235 Broken |= TreatBrokenDebugInfoAsError; 236 BrokenDebugInfo = true; 237 } 238 239 /// A debug info check failed (with values to print). 240 template <typename T1, typename... Ts> 241 void DebugInfoCheckFailed(const Twine &Message, const T1 &V1, 242 const Ts &... Vs) { 243 DebugInfoCheckFailed(Message); 244 if (OS) 245 WriteTs(V1, Vs...); 246 } 247 }; 248 249 } // namespace llvm 250 251 namespace { 252 253 class Verifier : public InstVisitor<Verifier>, VerifierSupport { 254 friend class InstVisitor<Verifier>; 255 256 DominatorTree DT; 257 258 /// When verifying a basic block, keep track of all of the 259 /// instructions we have seen so far. 260 /// 261 /// This allows us to do efficient dominance checks for the case when an 262 /// instruction has an operand that is an instruction in the same block. 263 SmallPtrSet<Instruction *, 16> InstsInThisBlock; 264 265 /// Keep track of the metadata nodes that have been checked already. 266 SmallPtrSet<const Metadata *, 32> MDNodes; 267 268 /// Keep track which DISubprogram is attached to which function. 269 DenseMap<const DISubprogram *, const Function *> DISubprogramAttachments; 270 271 /// Track all DICompileUnits visited. 272 SmallPtrSet<const Metadata *, 2> CUVisited; 273 274 /// The result type for a landingpad. 275 Type *LandingPadResultTy; 276 277 /// Whether we've seen a call to @llvm.localescape in this function 278 /// already. 279 bool SawFrameEscape; 280 281 /// Whether the current function has a DISubprogram attached to it. 282 bool HasDebugInfo = false; 283 284 /// Stores the count of how many objects were passed to llvm.localescape for a 285 /// given function and the largest index passed to llvm.localrecover. 286 DenseMap<Function *, std::pair<unsigned, unsigned>> FrameEscapeInfo; 287 288 // Maps catchswitches and cleanuppads that unwind to siblings to the 289 // terminators that indicate the unwind, used to detect cycles therein. 290 MapVector<Instruction *, TerminatorInst *> SiblingFuncletInfo; 291 292 /// Cache of constants visited in search of ConstantExprs. 293 SmallPtrSet<const Constant *, 32> ConstantExprVisited; 294 295 /// Cache of declarations of the llvm.experimental.deoptimize.<ty> intrinsic. 296 SmallVector<const Function *, 4> DeoptimizeDeclarations; 297 298 // Verify that this GlobalValue is only used in this module. 299 // This map is used to avoid visiting uses twice. We can arrive at a user 300 // twice, if they have multiple operands. In particular for very large 301 // constant expressions, we can arrive at a particular user many times. 302 SmallPtrSet<const Value *, 32> GlobalValueVisited; 303 304 // Keeps track of duplicate function argument debug info. 305 SmallVector<const DILocalVariable *, 16> DebugFnArgs; 306 307 TBAAVerifier TBAAVerifyHelper; 308 309 void checkAtomicMemAccessSize(Type *Ty, const Instruction *I); 310 311 public: 312 explicit Verifier(raw_ostream *OS, bool ShouldTreatBrokenDebugInfoAsError, 313 const Module &M) 314 : VerifierSupport(OS, M), LandingPadResultTy(nullptr), 315 SawFrameEscape(false), TBAAVerifyHelper(this) { 316 TreatBrokenDebugInfoAsError = ShouldTreatBrokenDebugInfoAsError; 317 } 318 319 bool hasBrokenDebugInfo() const { return BrokenDebugInfo; } 320 321 bool verify(const Function &F) { 322 assert(F.getParent() == &M && 323 "An instance of this class only works with a specific module!"); 324 325 // First ensure the function is well-enough formed to compute dominance 326 // information, and directly compute a dominance tree. We don't rely on the 327 // pass manager to provide this as it isolates us from a potentially 328 // out-of-date dominator tree and makes it significantly more complex to run 329 // this code outside of a pass manager. 330 // FIXME: It's really gross that we have to cast away constness here. 331 if (!F.empty()) 332 DT.recalculate(const_cast<Function &>(F)); 333 334 for (const BasicBlock &BB : F) { 335 if (!BB.empty() && BB.back().isTerminator()) 336 continue; 337 338 if (OS) { 339 *OS << "Basic Block in function '" << F.getName() 340 << "' does not have terminator!\n"; 341 BB.printAsOperand(*OS, true, MST); 342 *OS << "\n"; 343 } 344 return false; 345 } 346 347 Broken = false; 348 // FIXME: We strip const here because the inst visitor strips const. 349 visit(const_cast<Function &>(F)); 350 verifySiblingFuncletUnwinds(); 351 InstsInThisBlock.clear(); 352 DebugFnArgs.clear(); 353 LandingPadResultTy = nullptr; 354 SawFrameEscape = false; 355 SiblingFuncletInfo.clear(); 356 357 return !Broken; 358 } 359 360 /// Verify the module that this instance of \c Verifier was initialized with. 361 bool verify() { 362 Broken = false; 363 364 // Collect all declarations of the llvm.experimental.deoptimize intrinsic. 365 for (const Function &F : M) 366 if (F.getIntrinsicID() == Intrinsic::experimental_deoptimize) 367 DeoptimizeDeclarations.push_back(&F); 368 369 // Now that we've visited every function, verify that we never asked to 370 // recover a frame index that wasn't escaped. 371 verifyFrameRecoverIndices(); 372 for (const GlobalVariable &GV : M.globals()) 373 visitGlobalVariable(GV); 374 375 for (const GlobalAlias &GA : M.aliases()) 376 visitGlobalAlias(GA); 377 378 for (const NamedMDNode &NMD : M.named_metadata()) 379 visitNamedMDNode(NMD); 380 381 for (const StringMapEntry<Comdat> &SMEC : M.getComdatSymbolTable()) 382 visitComdat(SMEC.getValue()); 383 384 visitModuleFlags(M); 385 visitModuleIdents(M); 386 387 verifyCompileUnits(); 388 389 verifyDeoptimizeCallingConvs(); 390 DISubprogramAttachments.clear(); 391 return !Broken; 392 } 393 394 private: 395 // Verification methods... 396 void visitGlobalValue(const GlobalValue &GV); 397 void visitGlobalVariable(const GlobalVariable &GV); 398 void visitGlobalAlias(const GlobalAlias &GA); 399 void visitAliaseeSubExpr(const GlobalAlias &A, const Constant &C); 400 void visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias *> &Visited, 401 const GlobalAlias &A, const Constant &C); 402 void visitNamedMDNode(const NamedMDNode &NMD); 403 void visitMDNode(const MDNode &MD); 404 void visitMetadataAsValue(const MetadataAsValue &MD, Function *F); 405 void visitValueAsMetadata(const ValueAsMetadata &MD, Function *F); 406 void visitComdat(const Comdat &C); 407 void visitModuleIdents(const Module &M); 408 void visitModuleFlags(const Module &M); 409 void visitModuleFlag(const MDNode *Op, 410 DenseMap<const MDString *, const MDNode *> &SeenIDs, 411 SmallVectorImpl<const MDNode *> &Requirements); 412 void visitModuleFlagCGProfileEntry(const MDOperand &MDO); 413 void visitFunction(const Function &F); 414 void visitBasicBlock(BasicBlock &BB); 415 void visitRangeMetadata(Instruction &I, MDNode *Range, Type *Ty); 416 void visitDereferenceableMetadata(Instruction &I, MDNode *MD); 417 418 template <class Ty> bool isValidMetadataArray(const MDTuple &N); 419 #define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) void visit##CLASS(const CLASS &N); 420 #include "llvm/IR/Metadata.def" 421 void visitDIScope(const DIScope &N); 422 void visitDIVariable(const DIVariable &N); 423 void visitDILexicalBlockBase(const DILexicalBlockBase &N); 424 void visitDITemplateParameter(const DITemplateParameter &N); 425 426 void visitTemplateParams(const MDNode &N, const Metadata &RawParams); 427 428 // InstVisitor overrides... 429 using InstVisitor<Verifier>::visit; 430 void visit(Instruction &I); 431 432 void visitTruncInst(TruncInst &I); 433 void visitZExtInst(ZExtInst &I); 434 void visitSExtInst(SExtInst &I); 435 void visitFPTruncInst(FPTruncInst &I); 436 void visitFPExtInst(FPExtInst &I); 437 void visitFPToUIInst(FPToUIInst &I); 438 void visitFPToSIInst(FPToSIInst &I); 439 void visitUIToFPInst(UIToFPInst &I); 440 void visitSIToFPInst(SIToFPInst &I); 441 void visitIntToPtrInst(IntToPtrInst &I); 442 void visitPtrToIntInst(PtrToIntInst &I); 443 void visitBitCastInst(BitCastInst &I); 444 void visitAddrSpaceCastInst(AddrSpaceCastInst &I); 445 void visitPHINode(PHINode &PN); 446 void visitBinaryOperator(BinaryOperator &B); 447 void visitICmpInst(ICmpInst &IC); 448 void visitFCmpInst(FCmpInst &FC); 449 void visitExtractElementInst(ExtractElementInst &EI); 450 void visitInsertElementInst(InsertElementInst &EI); 451 void visitShuffleVectorInst(ShuffleVectorInst &EI); 452 void visitVAArgInst(VAArgInst &VAA) { visitInstruction(VAA); } 453 void visitCallInst(CallInst &CI); 454 void visitInvokeInst(InvokeInst &II); 455 void visitGetElementPtrInst(GetElementPtrInst &GEP); 456 void visitLoadInst(LoadInst &LI); 457 void visitStoreInst(StoreInst &SI); 458 void verifyDominatesUse(Instruction &I, unsigned i); 459 void visitInstruction(Instruction &I); 460 void visitTerminatorInst(TerminatorInst &I); 461 void visitBranchInst(BranchInst &BI); 462 void visitReturnInst(ReturnInst &RI); 463 void visitSwitchInst(SwitchInst &SI); 464 void visitIndirectBrInst(IndirectBrInst &BI); 465 void visitSelectInst(SelectInst &SI); 466 void visitUserOp1(Instruction &I); 467 void visitUserOp2(Instruction &I) { visitUserOp1(I); } 468 void visitIntrinsicCallSite(Intrinsic::ID ID, CallSite CS); 469 void visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI); 470 void visitDbgIntrinsic(StringRef Kind, DbgVariableIntrinsic &DII); 471 void visitDbgLabelIntrinsic(StringRef Kind, DbgLabelInst &DLI); 472 void visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI); 473 void visitAtomicRMWInst(AtomicRMWInst &RMWI); 474 void visitFenceInst(FenceInst &FI); 475 void visitAllocaInst(AllocaInst &AI); 476 void visitExtractValueInst(ExtractValueInst &EVI); 477 void visitInsertValueInst(InsertValueInst &IVI); 478 void visitEHPadPredecessors(Instruction &I); 479 void visitLandingPadInst(LandingPadInst &LPI); 480 void visitResumeInst(ResumeInst &RI); 481 void visitCatchPadInst(CatchPadInst &CPI); 482 void visitCatchReturnInst(CatchReturnInst &CatchReturn); 483 void visitCleanupPadInst(CleanupPadInst &CPI); 484 void visitFuncletPadInst(FuncletPadInst &FPI); 485 void visitCatchSwitchInst(CatchSwitchInst &CatchSwitch); 486 void visitCleanupReturnInst(CleanupReturnInst &CRI); 487 488 void verifyCallSite(CallSite CS); 489 void verifySwiftErrorCallSite(CallSite CS, const Value *SwiftErrorVal); 490 void verifySwiftErrorValue(const Value *SwiftErrorVal); 491 void verifyMustTailCall(CallInst &CI); 492 bool performTypeCheck(Intrinsic::ID ID, Function *F, Type *Ty, int VT, 493 unsigned ArgNo, std::string &Suffix); 494 bool verifyAttributeCount(AttributeList Attrs, unsigned Params); 495 void verifyAttributeTypes(AttributeSet Attrs, bool IsFunction, 496 const Value *V); 497 void verifyParameterAttrs(AttributeSet Attrs, Type *Ty, const Value *V); 498 void verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs, 499 const Value *V); 500 void verifyFunctionMetadata(ArrayRef<std::pair<unsigned, MDNode *>> MDs); 501 502 void visitConstantExprsRecursively(const Constant *EntryC); 503 void visitConstantExpr(const ConstantExpr *CE); 504 void verifyStatepoint(ImmutableCallSite CS); 505 void verifyFrameRecoverIndices(); 506 void verifySiblingFuncletUnwinds(); 507 508 void verifyFragmentExpression(const DbgVariableIntrinsic &I); 509 template <typename ValueOrMetadata> 510 void verifyFragmentExpression(const DIVariable &V, 511 DIExpression::FragmentInfo Fragment, 512 ValueOrMetadata *Desc); 513 void verifyFnArgs(const DbgVariableIntrinsic &I); 514 515 /// Module-level debug info verification... 516 void verifyCompileUnits(); 517 518 /// Module-level verification that all @llvm.experimental.deoptimize 519 /// declarations share the same calling convention. 520 void verifyDeoptimizeCallingConvs(); 521 }; 522 523 } // end anonymous namespace 524 525 /// We know that cond should be true, if not print an error message. 526 #define Assert(C, ...) \ 527 do { if (!(C)) { CheckFailed(__VA_ARGS__); return; } } while (false) 528 529 /// We know that a debug info condition should be true, if not print 530 /// an error message. 531 #define AssertDI(C, ...) \ 532 do { if (!(C)) { DebugInfoCheckFailed(__VA_ARGS__); return; } } while (false) 533 534 void Verifier::visit(Instruction &I) { 535 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) 536 Assert(I.getOperand(i) != nullptr, "Operand is null", &I); 537 InstVisitor<Verifier>::visit(I); 538 } 539 540 // Helper to recursively iterate over indirect users. By 541 // returning false, the callback can ask to stop recursing 542 // further. 543 static void forEachUser(const Value *User, 544 SmallPtrSet<const Value *, 32> &Visited, 545 llvm::function_ref<bool(const Value *)> Callback) { 546 if (!Visited.insert(User).second) 547 return; 548 for (const Value *TheNextUser : User->materialized_users()) 549 if (Callback(TheNextUser)) 550 forEachUser(TheNextUser, Visited, Callback); 551 } 552 553 void Verifier::visitGlobalValue(const GlobalValue &GV) { 554 Assert(!GV.isDeclaration() || GV.hasValidDeclarationLinkage(), 555 "Global is external, but doesn't have external or weak linkage!", &GV); 556 557 Assert(GV.getAlignment() <= Value::MaximumAlignment, 558 "huge alignment values are unsupported", &GV); 559 Assert(!GV.hasAppendingLinkage() || isa<GlobalVariable>(GV), 560 "Only global variables can have appending linkage!", &GV); 561 562 if (GV.hasAppendingLinkage()) { 563 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(&GV); 564 Assert(GVar && GVar->getValueType()->isArrayTy(), 565 "Only global arrays can have appending linkage!", GVar); 566 } 567 568 if (GV.isDeclarationForLinker()) 569 Assert(!GV.hasComdat(), "Declaration may not be in a Comdat!", &GV); 570 571 if (GV.hasDLLImportStorageClass()) { 572 Assert(!GV.isDSOLocal(), 573 "GlobalValue with DLLImport Storage is dso_local!", &GV); 574 575 Assert((GV.isDeclaration() && GV.hasExternalLinkage()) || 576 GV.hasAvailableExternallyLinkage(), 577 "Global is marked as dllimport, but not external", &GV); 578 } 579 580 if (GV.hasLocalLinkage()) 581 Assert(GV.isDSOLocal(), 582 "GlobalValue with private or internal linkage must be dso_local!", 583 &GV); 584 585 if (!GV.hasDefaultVisibility() && !GV.hasExternalWeakLinkage()) 586 Assert(GV.isDSOLocal(), 587 "GlobalValue with non default visibility must be dso_local!", &GV); 588 589 forEachUser(&GV, GlobalValueVisited, [&](const Value *V) -> bool { 590 if (const Instruction *I = dyn_cast<Instruction>(V)) { 591 if (!I->getParent() || !I->getParent()->getParent()) 592 CheckFailed("Global is referenced by parentless instruction!", &GV, &M, 593 I); 594 else if (I->getParent()->getParent()->getParent() != &M) 595 CheckFailed("Global is referenced in a different module!", &GV, &M, I, 596 I->getParent()->getParent(), 597 I->getParent()->getParent()->getParent()); 598 return false; 599 } else if (const Function *F = dyn_cast<Function>(V)) { 600 if (F->getParent() != &M) 601 CheckFailed("Global is used by function in a different module", &GV, &M, 602 F, F->getParent()); 603 return false; 604 } 605 return true; 606 }); 607 } 608 609 void Verifier::visitGlobalVariable(const GlobalVariable &GV) { 610 if (GV.hasInitializer()) { 611 Assert(GV.getInitializer()->getType() == GV.getValueType(), 612 "Global variable initializer type does not match global " 613 "variable type!", 614 &GV); 615 // If the global has common linkage, it must have a zero initializer and 616 // cannot be constant. 617 if (GV.hasCommonLinkage()) { 618 Assert(GV.getInitializer()->isNullValue(), 619 "'common' global must have a zero initializer!", &GV); 620 Assert(!GV.isConstant(), "'common' global may not be marked constant!", 621 &GV); 622 Assert(!GV.hasComdat(), "'common' global may not be in a Comdat!", &GV); 623 } 624 } 625 626 if (GV.hasName() && (GV.getName() == "llvm.global_ctors" || 627 GV.getName() == "llvm.global_dtors")) { 628 Assert(!GV.hasInitializer() || GV.hasAppendingLinkage(), 629 "invalid linkage for intrinsic global variable", &GV); 630 // Don't worry about emitting an error for it not being an array, 631 // visitGlobalValue will complain on appending non-array. 632 if (ArrayType *ATy = dyn_cast<ArrayType>(GV.getValueType())) { 633 StructType *STy = dyn_cast<StructType>(ATy->getElementType()); 634 PointerType *FuncPtrTy = 635 FunctionType::get(Type::getVoidTy(Context), false)->getPointerTo(); 636 // FIXME: Reject the 2-field form in LLVM 4.0. 637 Assert(STy && 638 (STy->getNumElements() == 2 || STy->getNumElements() == 3) && 639 STy->getTypeAtIndex(0u)->isIntegerTy(32) && 640 STy->getTypeAtIndex(1) == FuncPtrTy, 641 "wrong type for intrinsic global variable", &GV); 642 if (STy->getNumElements() == 3) { 643 Type *ETy = STy->getTypeAtIndex(2); 644 Assert(ETy->isPointerTy() && 645 cast<PointerType>(ETy)->getElementType()->isIntegerTy(8), 646 "wrong type for intrinsic global variable", &GV); 647 } 648 } 649 } 650 651 if (GV.hasName() && (GV.getName() == "llvm.used" || 652 GV.getName() == "llvm.compiler.used")) { 653 Assert(!GV.hasInitializer() || GV.hasAppendingLinkage(), 654 "invalid linkage for intrinsic global variable", &GV); 655 Type *GVType = GV.getValueType(); 656 if (ArrayType *ATy = dyn_cast<ArrayType>(GVType)) { 657 PointerType *PTy = dyn_cast<PointerType>(ATy->getElementType()); 658 Assert(PTy, "wrong type for intrinsic global variable", &GV); 659 if (GV.hasInitializer()) { 660 const Constant *Init = GV.getInitializer(); 661 const ConstantArray *InitArray = dyn_cast<ConstantArray>(Init); 662 Assert(InitArray, "wrong initalizer for intrinsic global variable", 663 Init); 664 for (Value *Op : InitArray->operands()) { 665 Value *V = Op->stripPointerCastsNoFollowAliases(); 666 Assert(isa<GlobalVariable>(V) || isa<Function>(V) || 667 isa<GlobalAlias>(V), 668 "invalid llvm.used member", V); 669 Assert(V->hasName(), "members of llvm.used must be named", V); 670 } 671 } 672 } 673 } 674 675 // Visit any debug info attachments. 676 SmallVector<MDNode *, 1> MDs; 677 GV.getMetadata(LLVMContext::MD_dbg, MDs); 678 for (auto *MD : MDs) { 679 if (auto *GVE = dyn_cast<DIGlobalVariableExpression>(MD)) 680 visitDIGlobalVariableExpression(*GVE); 681 else 682 AssertDI(false, "!dbg attachment of global variable must be a " 683 "DIGlobalVariableExpression"); 684 } 685 686 if (!GV.hasInitializer()) { 687 visitGlobalValue(GV); 688 return; 689 } 690 691 // Walk any aggregate initializers looking for bitcasts between address spaces 692 visitConstantExprsRecursively(GV.getInitializer()); 693 694 visitGlobalValue(GV); 695 } 696 697 void Verifier::visitAliaseeSubExpr(const GlobalAlias &GA, const Constant &C) { 698 SmallPtrSet<const GlobalAlias*, 4> Visited; 699 Visited.insert(&GA); 700 visitAliaseeSubExpr(Visited, GA, C); 701 } 702 703 void Verifier::visitAliaseeSubExpr(SmallPtrSetImpl<const GlobalAlias*> &Visited, 704 const GlobalAlias &GA, const Constant &C) { 705 if (const auto *GV = dyn_cast<GlobalValue>(&C)) { 706 Assert(!GV->isDeclarationForLinker(), "Alias must point to a definition", 707 &GA); 708 709 if (const auto *GA2 = dyn_cast<GlobalAlias>(GV)) { 710 Assert(Visited.insert(GA2).second, "Aliases cannot form a cycle", &GA); 711 712 Assert(!GA2->isInterposable(), "Alias cannot point to an interposable alias", 713 &GA); 714 } else { 715 // Only continue verifying subexpressions of GlobalAliases. 716 // Do not recurse into global initializers. 717 return; 718 } 719 } 720 721 if (const auto *CE = dyn_cast<ConstantExpr>(&C)) 722 visitConstantExprsRecursively(CE); 723 724 for (const Use &U : C.operands()) { 725 Value *V = &*U; 726 if (const auto *GA2 = dyn_cast<GlobalAlias>(V)) 727 visitAliaseeSubExpr(Visited, GA, *GA2->getAliasee()); 728 else if (const auto *C2 = dyn_cast<Constant>(V)) 729 visitAliaseeSubExpr(Visited, GA, *C2); 730 } 731 } 732 733 void Verifier::visitGlobalAlias(const GlobalAlias &GA) { 734 Assert(GlobalAlias::isValidLinkage(GA.getLinkage()), 735 "Alias should have private, internal, linkonce, weak, linkonce_odr, " 736 "weak_odr, or external linkage!", 737 &GA); 738 const Constant *Aliasee = GA.getAliasee(); 739 Assert(Aliasee, "Aliasee cannot be NULL!", &GA); 740 Assert(GA.getType() == Aliasee->getType(), 741 "Alias and aliasee types should match!", &GA); 742 743 Assert(isa<GlobalValue>(Aliasee) || isa<ConstantExpr>(Aliasee), 744 "Aliasee should be either GlobalValue or ConstantExpr", &GA); 745 746 visitAliaseeSubExpr(GA, *Aliasee); 747 748 visitGlobalValue(GA); 749 } 750 751 void Verifier::visitNamedMDNode(const NamedMDNode &NMD) { 752 // There used to be various other llvm.dbg.* nodes, but we don't support 753 // upgrading them and we want to reserve the namespace for future uses. 754 if (NMD.getName().startswith("llvm.dbg.")) 755 AssertDI(NMD.getName() == "llvm.dbg.cu", 756 "unrecognized named metadata node in the llvm.dbg namespace", 757 &NMD); 758 for (const MDNode *MD : NMD.operands()) { 759 if (NMD.getName() == "llvm.dbg.cu") 760 AssertDI(MD && isa<DICompileUnit>(MD), "invalid compile unit", &NMD, MD); 761 762 if (!MD) 763 continue; 764 765 visitMDNode(*MD); 766 } 767 } 768 769 void Verifier::visitMDNode(const MDNode &MD) { 770 // Only visit each node once. Metadata can be mutually recursive, so this 771 // avoids infinite recursion here, as well as being an optimization. 772 if (!MDNodes.insert(&MD).second) 773 return; 774 775 switch (MD.getMetadataID()) { 776 default: 777 llvm_unreachable("Invalid MDNode subclass"); 778 case Metadata::MDTupleKind: 779 break; 780 #define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \ 781 case Metadata::CLASS##Kind: \ 782 visit##CLASS(cast<CLASS>(MD)); \ 783 break; 784 #include "llvm/IR/Metadata.def" 785 } 786 787 for (const Metadata *Op : MD.operands()) { 788 if (!Op) 789 continue; 790 Assert(!isa<LocalAsMetadata>(Op), "Invalid operand for global metadata!", 791 &MD, Op); 792 if (auto *N = dyn_cast<MDNode>(Op)) { 793 visitMDNode(*N); 794 continue; 795 } 796 if (auto *V = dyn_cast<ValueAsMetadata>(Op)) { 797 visitValueAsMetadata(*V, nullptr); 798 continue; 799 } 800 } 801 802 // Check these last, so we diagnose problems in operands first. 803 Assert(!MD.isTemporary(), "Expected no forward declarations!", &MD); 804 Assert(MD.isResolved(), "All nodes should be resolved!", &MD); 805 } 806 807 void Verifier::visitValueAsMetadata(const ValueAsMetadata &MD, Function *F) { 808 Assert(MD.getValue(), "Expected valid value", &MD); 809 Assert(!MD.getValue()->getType()->isMetadataTy(), 810 "Unexpected metadata round-trip through values", &MD, MD.getValue()); 811 812 auto *L = dyn_cast<LocalAsMetadata>(&MD); 813 if (!L) 814 return; 815 816 Assert(F, "function-local metadata used outside a function", L); 817 818 // If this was an instruction, bb, or argument, verify that it is in the 819 // function that we expect. 820 Function *ActualF = nullptr; 821 if (Instruction *I = dyn_cast<Instruction>(L->getValue())) { 822 Assert(I->getParent(), "function-local metadata not in basic block", L, I); 823 ActualF = I->getParent()->getParent(); 824 } else if (BasicBlock *BB = dyn_cast<BasicBlock>(L->getValue())) 825 ActualF = BB->getParent(); 826 else if (Argument *A = dyn_cast<Argument>(L->getValue())) 827 ActualF = A->getParent(); 828 assert(ActualF && "Unimplemented function local metadata case!"); 829 830 Assert(ActualF == F, "function-local metadata used in wrong function", L); 831 } 832 833 void Verifier::visitMetadataAsValue(const MetadataAsValue &MDV, Function *F) { 834 Metadata *MD = MDV.getMetadata(); 835 if (auto *N = dyn_cast<MDNode>(MD)) { 836 visitMDNode(*N); 837 return; 838 } 839 840 // Only visit each node once. Metadata can be mutually recursive, so this 841 // avoids infinite recursion here, as well as being an optimization. 842 if (!MDNodes.insert(MD).second) 843 return; 844 845 if (auto *V = dyn_cast<ValueAsMetadata>(MD)) 846 visitValueAsMetadata(*V, F); 847 } 848 849 static bool isType(const Metadata *MD) { return !MD || isa<DIType>(MD); } 850 static bool isScope(const Metadata *MD) { return !MD || isa<DIScope>(MD); } 851 static bool isDINode(const Metadata *MD) { return !MD || isa<DINode>(MD); } 852 853 void Verifier::visitDILocation(const DILocation &N) { 854 AssertDI(N.getRawScope() && isa<DILocalScope>(N.getRawScope()), 855 "location requires a valid scope", &N, N.getRawScope()); 856 if (auto *IA = N.getRawInlinedAt()) 857 AssertDI(isa<DILocation>(IA), "inlined-at should be a location", &N, IA); 858 if (auto *SP = dyn_cast<DISubprogram>(N.getRawScope())) 859 AssertDI(SP->isDefinition(), "scope points into the type hierarchy", &N); 860 } 861 862 void Verifier::visitGenericDINode(const GenericDINode &N) { 863 AssertDI(N.getTag(), "invalid tag", &N); 864 } 865 866 void Verifier::visitDIScope(const DIScope &N) { 867 if (auto *F = N.getRawFile()) 868 AssertDI(isa<DIFile>(F), "invalid file", &N, F); 869 } 870 871 void Verifier::visitDISubrange(const DISubrange &N) { 872 AssertDI(N.getTag() == dwarf::DW_TAG_subrange_type, "invalid tag", &N); 873 auto Count = N.getCount(); 874 AssertDI(Count, "Count must either be a signed constant or a DIVariable", 875 &N); 876 AssertDI(!Count.is<ConstantInt*>() || 877 Count.get<ConstantInt*>()->getSExtValue() >= -1, 878 "invalid subrange count", &N); 879 } 880 881 void Verifier::visitDIEnumerator(const DIEnumerator &N) { 882 AssertDI(N.getTag() == dwarf::DW_TAG_enumerator, "invalid tag", &N); 883 } 884 885 void Verifier::visitDIBasicType(const DIBasicType &N) { 886 AssertDI(N.getTag() == dwarf::DW_TAG_base_type || 887 N.getTag() == dwarf::DW_TAG_unspecified_type, 888 "invalid tag", &N); 889 AssertDI(!(N.isBigEndian() && N.isLittleEndian()) , 890 "has conflicting flags", &N); 891 } 892 893 void Verifier::visitDIDerivedType(const DIDerivedType &N) { 894 // Common scope checks. 895 visitDIScope(N); 896 897 AssertDI(N.getTag() == dwarf::DW_TAG_typedef || 898 N.getTag() == dwarf::DW_TAG_pointer_type || 899 N.getTag() == dwarf::DW_TAG_ptr_to_member_type || 900 N.getTag() == dwarf::DW_TAG_reference_type || 901 N.getTag() == dwarf::DW_TAG_rvalue_reference_type || 902 N.getTag() == dwarf::DW_TAG_const_type || 903 N.getTag() == dwarf::DW_TAG_volatile_type || 904 N.getTag() == dwarf::DW_TAG_restrict_type || 905 N.getTag() == dwarf::DW_TAG_atomic_type || 906 N.getTag() == dwarf::DW_TAG_member || 907 N.getTag() == dwarf::DW_TAG_inheritance || 908 N.getTag() == dwarf::DW_TAG_friend, 909 "invalid tag", &N); 910 if (N.getTag() == dwarf::DW_TAG_ptr_to_member_type) { 911 AssertDI(isType(N.getRawExtraData()), "invalid pointer to member type", &N, 912 N.getRawExtraData()); 913 } 914 915 AssertDI(isScope(N.getRawScope()), "invalid scope", &N, N.getRawScope()); 916 AssertDI(isType(N.getRawBaseType()), "invalid base type", &N, 917 N.getRawBaseType()); 918 919 if (N.getDWARFAddressSpace()) { 920 AssertDI(N.getTag() == dwarf::DW_TAG_pointer_type || 921 N.getTag() == dwarf::DW_TAG_reference_type, 922 "DWARF address space only applies to pointer or reference types", 923 &N); 924 } 925 } 926 927 /// Detect mutually exclusive flags. 928 static bool hasConflictingReferenceFlags(unsigned Flags) { 929 return ((Flags & DINode::FlagLValueReference) && 930 (Flags & DINode::FlagRValueReference)) || 931 ((Flags & DINode::FlagTypePassByValue) && 932 (Flags & DINode::FlagTypePassByReference)); 933 } 934 935 void Verifier::visitTemplateParams(const MDNode &N, const Metadata &RawParams) { 936 auto *Params = dyn_cast<MDTuple>(&RawParams); 937 AssertDI(Params, "invalid template params", &N, &RawParams); 938 for (Metadata *Op : Params->operands()) { 939 AssertDI(Op && isa<DITemplateParameter>(Op), "invalid template parameter", 940 &N, Params, Op); 941 } 942 } 943 944 void Verifier::visitDICompositeType(const DICompositeType &N) { 945 // Common scope checks. 946 visitDIScope(N); 947 948 AssertDI(N.getTag() == dwarf::DW_TAG_array_type || 949 N.getTag() == dwarf::DW_TAG_structure_type || 950 N.getTag() == dwarf::DW_TAG_union_type || 951 N.getTag() == dwarf::DW_TAG_enumeration_type || 952 N.getTag() == dwarf::DW_TAG_class_type || 953 N.getTag() == dwarf::DW_TAG_variant_part, 954 "invalid tag", &N); 955 956 AssertDI(isScope(N.getRawScope()), "invalid scope", &N, N.getRawScope()); 957 AssertDI(isType(N.getRawBaseType()), "invalid base type", &N, 958 N.getRawBaseType()); 959 960 AssertDI(!N.getRawElements() || isa<MDTuple>(N.getRawElements()), 961 "invalid composite elements", &N, N.getRawElements()); 962 AssertDI(isType(N.getRawVTableHolder()), "invalid vtable holder", &N, 963 N.getRawVTableHolder()); 964 AssertDI(!hasConflictingReferenceFlags(N.getFlags()), 965 "invalid reference flags", &N); 966 967 if (N.isVector()) { 968 const DINodeArray Elements = N.getElements(); 969 AssertDI(Elements.size() == 1 && 970 Elements[0]->getTag() == dwarf::DW_TAG_subrange_type, 971 "invalid vector, expected one element of type subrange", &N); 972 } 973 974 if (auto *Params = N.getRawTemplateParams()) 975 visitTemplateParams(N, *Params); 976 977 if (N.getTag() == dwarf::DW_TAG_class_type || 978 N.getTag() == dwarf::DW_TAG_union_type) { 979 AssertDI(N.getFile() && !N.getFile()->getFilename().empty(), 980 "class/union requires a filename", &N, N.getFile()); 981 } 982 983 if (auto *D = N.getRawDiscriminator()) { 984 AssertDI(isa<DIDerivedType>(D) && N.getTag() == dwarf::DW_TAG_variant_part, 985 "discriminator can only appear on variant part"); 986 } 987 } 988 989 void Verifier::visitDISubroutineType(const DISubroutineType &N) { 990 AssertDI(N.getTag() == dwarf::DW_TAG_subroutine_type, "invalid tag", &N); 991 if (auto *Types = N.getRawTypeArray()) { 992 AssertDI(isa<MDTuple>(Types), "invalid composite elements", &N, Types); 993 for (Metadata *Ty : N.getTypeArray()->operands()) { 994 AssertDI(isType(Ty), "invalid subroutine type ref", &N, Types, Ty); 995 } 996 } 997 AssertDI(!hasConflictingReferenceFlags(N.getFlags()), 998 "invalid reference flags", &N); 999 } 1000 1001 void Verifier::visitDIFile(const DIFile &N) { 1002 AssertDI(N.getTag() == dwarf::DW_TAG_file_type, "invalid tag", &N); 1003 Optional<DIFile::ChecksumInfo<StringRef>> Checksum = N.getChecksum(); 1004 if (Checksum) { 1005 AssertDI(Checksum->Kind <= DIFile::ChecksumKind::CSK_Last, 1006 "invalid checksum kind", &N); 1007 size_t Size; 1008 switch (Checksum->Kind) { 1009 case DIFile::CSK_MD5: 1010 Size = 32; 1011 break; 1012 case DIFile::CSK_SHA1: 1013 Size = 40; 1014 break; 1015 } 1016 AssertDI(Checksum->Value.size() == Size, "invalid checksum length", &N); 1017 AssertDI(Checksum->Value.find_if_not(llvm::isHexDigit) == StringRef::npos, 1018 "invalid checksum", &N); 1019 } 1020 } 1021 1022 void Verifier::visitDICompileUnit(const DICompileUnit &N) { 1023 AssertDI(N.isDistinct(), "compile units must be distinct", &N); 1024 AssertDI(N.getTag() == dwarf::DW_TAG_compile_unit, "invalid tag", &N); 1025 1026 // Don't bother verifying the compilation directory or producer string 1027 // as those could be empty. 1028 AssertDI(N.getRawFile() && isa<DIFile>(N.getRawFile()), "invalid file", &N, 1029 N.getRawFile()); 1030 AssertDI(!N.getFile()->getFilename().empty(), "invalid filename", &N, 1031 N.getFile()); 1032 1033 AssertDI((N.getEmissionKind() <= DICompileUnit::LastEmissionKind), 1034 "invalid emission kind", &N); 1035 1036 if (auto *Array = N.getRawEnumTypes()) { 1037 AssertDI(isa<MDTuple>(Array), "invalid enum list", &N, Array); 1038 for (Metadata *Op : N.getEnumTypes()->operands()) { 1039 auto *Enum = dyn_cast_or_null<DICompositeType>(Op); 1040 AssertDI(Enum && Enum->getTag() == dwarf::DW_TAG_enumeration_type, 1041 "invalid enum type", &N, N.getEnumTypes(), Op); 1042 } 1043 } 1044 if (auto *Array = N.getRawRetainedTypes()) { 1045 AssertDI(isa<MDTuple>(Array), "invalid retained type list", &N, Array); 1046 for (Metadata *Op : N.getRetainedTypes()->operands()) { 1047 AssertDI(Op && (isa<DIType>(Op) || 1048 (isa<DISubprogram>(Op) && 1049 !cast<DISubprogram>(Op)->isDefinition())), 1050 "invalid retained type", &N, Op); 1051 } 1052 } 1053 if (auto *Array = N.getRawGlobalVariables()) { 1054 AssertDI(isa<MDTuple>(Array), "invalid global variable list", &N, Array); 1055 for (Metadata *Op : N.getGlobalVariables()->operands()) { 1056 AssertDI(Op && (isa<DIGlobalVariableExpression>(Op)), 1057 "invalid global variable ref", &N, Op); 1058 } 1059 } 1060 if (auto *Array = N.getRawImportedEntities()) { 1061 AssertDI(isa<MDTuple>(Array), "invalid imported entity list", &N, Array); 1062 for (Metadata *Op : N.getImportedEntities()->operands()) { 1063 AssertDI(Op && isa<DIImportedEntity>(Op), "invalid imported entity ref", 1064 &N, Op); 1065 } 1066 } 1067 if (auto *Array = N.getRawMacros()) { 1068 AssertDI(isa<MDTuple>(Array), "invalid macro list", &N, Array); 1069 for (Metadata *Op : N.getMacros()->operands()) { 1070 AssertDI(Op && isa<DIMacroNode>(Op), "invalid macro ref", &N, Op); 1071 } 1072 } 1073 CUVisited.insert(&N); 1074 } 1075 1076 void Verifier::visitDISubprogram(const DISubprogram &N) { 1077 AssertDI(N.getTag() == dwarf::DW_TAG_subprogram, "invalid tag", &N); 1078 AssertDI(isScope(N.getRawScope()), "invalid scope", &N, N.getRawScope()); 1079 if (auto *F = N.getRawFile()) 1080 AssertDI(isa<DIFile>(F), "invalid file", &N, F); 1081 else 1082 AssertDI(N.getLine() == 0, "line specified with no file", &N, N.getLine()); 1083 if (auto *T = N.getRawType()) 1084 AssertDI(isa<DISubroutineType>(T), "invalid subroutine type", &N, T); 1085 AssertDI(isType(N.getRawContainingType()), "invalid containing type", &N, 1086 N.getRawContainingType()); 1087 if (auto *Params = N.getRawTemplateParams()) 1088 visitTemplateParams(N, *Params); 1089 if (auto *S = N.getRawDeclaration()) 1090 AssertDI(isa<DISubprogram>(S) && !cast<DISubprogram>(S)->isDefinition(), 1091 "invalid subprogram declaration", &N, S); 1092 if (auto *RawNode = N.getRawRetainedNodes()) { 1093 auto *Node = dyn_cast<MDTuple>(RawNode); 1094 AssertDI(Node, "invalid retained nodes list", &N, RawNode); 1095 for (Metadata *Op : Node->operands()) { 1096 AssertDI(Op && (isa<DILocalVariable>(Op) || isa<DILabel>(Op)), 1097 "invalid retained nodes, expected DILocalVariable or DILabel", 1098 &N, Node, Op); 1099 } 1100 } 1101 AssertDI(!hasConflictingReferenceFlags(N.getFlags()), 1102 "invalid reference flags", &N); 1103 1104 auto *Unit = N.getRawUnit(); 1105 if (N.isDefinition()) { 1106 // Subprogram definitions (not part of the type hierarchy). 1107 AssertDI(N.isDistinct(), "subprogram definitions must be distinct", &N); 1108 AssertDI(Unit, "subprogram definitions must have a compile unit", &N); 1109 AssertDI(isa<DICompileUnit>(Unit), "invalid unit type", &N, Unit); 1110 } else { 1111 // Subprogram declarations (part of the type hierarchy). 1112 AssertDI(!Unit, "subprogram declarations must not have a compile unit", &N); 1113 } 1114 1115 if (auto *RawThrownTypes = N.getRawThrownTypes()) { 1116 auto *ThrownTypes = dyn_cast<MDTuple>(RawThrownTypes); 1117 AssertDI(ThrownTypes, "invalid thrown types list", &N, RawThrownTypes); 1118 for (Metadata *Op : ThrownTypes->operands()) 1119 AssertDI(Op && isa<DIType>(Op), "invalid thrown type", &N, ThrownTypes, 1120 Op); 1121 } 1122 } 1123 1124 void Verifier::visitDILexicalBlockBase(const DILexicalBlockBase &N) { 1125 AssertDI(N.getTag() == dwarf::DW_TAG_lexical_block, "invalid tag", &N); 1126 AssertDI(N.getRawScope() && isa<DILocalScope>(N.getRawScope()), 1127 "invalid local scope", &N, N.getRawScope()); 1128 if (auto *SP = dyn_cast<DISubprogram>(N.getRawScope())) 1129 AssertDI(SP->isDefinition(), "scope points into the type hierarchy", &N); 1130 } 1131 1132 void Verifier::visitDILexicalBlock(const DILexicalBlock &N) { 1133 visitDILexicalBlockBase(N); 1134 1135 AssertDI(N.getLine() || !N.getColumn(), 1136 "cannot have column info without line info", &N); 1137 } 1138 1139 void Verifier::visitDILexicalBlockFile(const DILexicalBlockFile &N) { 1140 visitDILexicalBlockBase(N); 1141 } 1142 1143 void Verifier::visitDINamespace(const DINamespace &N) { 1144 AssertDI(N.getTag() == dwarf::DW_TAG_namespace, "invalid tag", &N); 1145 if (auto *S = N.getRawScope()) 1146 AssertDI(isa<DIScope>(S), "invalid scope ref", &N, S); 1147 } 1148 1149 void Verifier::visitDIMacro(const DIMacro &N) { 1150 AssertDI(N.getMacinfoType() == dwarf::DW_MACINFO_define || 1151 N.getMacinfoType() == dwarf::DW_MACINFO_undef, 1152 "invalid macinfo type", &N); 1153 AssertDI(!N.getName().empty(), "anonymous macro", &N); 1154 if (!N.getValue().empty()) { 1155 assert(N.getValue().data()[0] != ' ' && "Macro value has a space prefix"); 1156 } 1157 } 1158 1159 void Verifier::visitDIMacroFile(const DIMacroFile &N) { 1160 AssertDI(N.getMacinfoType() == dwarf::DW_MACINFO_start_file, 1161 "invalid macinfo type", &N); 1162 if (auto *F = N.getRawFile()) 1163 AssertDI(isa<DIFile>(F), "invalid file", &N, F); 1164 1165 if (auto *Array = N.getRawElements()) { 1166 AssertDI(isa<MDTuple>(Array), "invalid macro list", &N, Array); 1167 for (Metadata *Op : N.getElements()->operands()) { 1168 AssertDI(Op && isa<DIMacroNode>(Op), "invalid macro ref", &N, Op); 1169 } 1170 } 1171 } 1172 1173 void Verifier::visitDIModule(const DIModule &N) { 1174 AssertDI(N.getTag() == dwarf::DW_TAG_module, "invalid tag", &N); 1175 AssertDI(!N.getName().empty(), "anonymous module", &N); 1176 } 1177 1178 void Verifier::visitDITemplateParameter(const DITemplateParameter &N) { 1179 AssertDI(isType(N.getRawType()), "invalid type ref", &N, N.getRawType()); 1180 } 1181 1182 void Verifier::visitDITemplateTypeParameter(const DITemplateTypeParameter &N) { 1183 visitDITemplateParameter(N); 1184 1185 AssertDI(N.getTag() == dwarf::DW_TAG_template_type_parameter, "invalid tag", 1186 &N); 1187 } 1188 1189 void Verifier::visitDITemplateValueParameter( 1190 const DITemplateValueParameter &N) { 1191 visitDITemplateParameter(N); 1192 1193 AssertDI(N.getTag() == dwarf::DW_TAG_template_value_parameter || 1194 N.getTag() == dwarf::DW_TAG_GNU_template_template_param || 1195 N.getTag() == dwarf::DW_TAG_GNU_template_parameter_pack, 1196 "invalid tag", &N); 1197 } 1198 1199 void Verifier::visitDIVariable(const DIVariable &N) { 1200 if (auto *S = N.getRawScope()) 1201 AssertDI(isa<DIScope>(S), "invalid scope", &N, S); 1202 if (auto *F = N.getRawFile()) 1203 AssertDI(isa<DIFile>(F), "invalid file", &N, F); 1204 } 1205 1206 void Verifier::visitDIGlobalVariable(const DIGlobalVariable &N) { 1207 // Checks common to all variables. 1208 visitDIVariable(N); 1209 1210 AssertDI(N.getTag() == dwarf::DW_TAG_variable, "invalid tag", &N); 1211 AssertDI(!N.getName().empty(), "missing global variable name", &N); 1212 AssertDI(isType(N.getRawType()), "invalid type ref", &N, N.getRawType()); 1213 AssertDI(N.getType(), "missing global variable type", &N); 1214 if (auto *Member = N.getRawStaticDataMemberDeclaration()) { 1215 AssertDI(isa<DIDerivedType>(Member), 1216 "invalid static data member declaration", &N, Member); 1217 } 1218 } 1219 1220 void Verifier::visitDILocalVariable(const DILocalVariable &N) { 1221 // Checks common to all variables. 1222 visitDIVariable(N); 1223 1224 AssertDI(isType(N.getRawType()), "invalid type ref", &N, N.getRawType()); 1225 AssertDI(N.getTag() == dwarf::DW_TAG_variable, "invalid tag", &N); 1226 AssertDI(N.getRawScope() && isa<DILocalScope>(N.getRawScope()), 1227 "local variable requires a valid scope", &N, N.getRawScope()); 1228 } 1229 1230 void Verifier::visitDILabel(const DILabel &N) { 1231 if (auto *S = N.getRawScope()) 1232 AssertDI(isa<DIScope>(S), "invalid scope", &N, S); 1233 if (auto *F = N.getRawFile()) 1234 AssertDI(isa<DIFile>(F), "invalid file", &N, F); 1235 1236 AssertDI(N.getTag() == dwarf::DW_TAG_label, "invalid tag", &N); 1237 AssertDI(N.getRawScope() && isa<DILocalScope>(N.getRawScope()), 1238 "label requires a valid scope", &N, N.getRawScope()); 1239 } 1240 1241 void Verifier::visitDIExpression(const DIExpression &N) { 1242 AssertDI(N.isValid(), "invalid expression", &N); 1243 } 1244 1245 void Verifier::visitDIGlobalVariableExpression( 1246 const DIGlobalVariableExpression &GVE) { 1247 AssertDI(GVE.getVariable(), "missing variable"); 1248 if (auto *Var = GVE.getVariable()) 1249 visitDIGlobalVariable(*Var); 1250 if (auto *Expr = GVE.getExpression()) { 1251 visitDIExpression(*Expr); 1252 if (auto Fragment = Expr->getFragmentInfo()) 1253 verifyFragmentExpression(*GVE.getVariable(), *Fragment, &GVE); 1254 } 1255 } 1256 1257 void Verifier::visitDIObjCProperty(const DIObjCProperty &N) { 1258 AssertDI(N.getTag() == dwarf::DW_TAG_APPLE_property, "invalid tag", &N); 1259 if (auto *T = N.getRawType()) 1260 AssertDI(isType(T), "invalid type ref", &N, T); 1261 if (auto *F = N.getRawFile()) 1262 AssertDI(isa<DIFile>(F), "invalid file", &N, F); 1263 } 1264 1265 void Verifier::visitDIImportedEntity(const DIImportedEntity &N) { 1266 AssertDI(N.getTag() == dwarf::DW_TAG_imported_module || 1267 N.getTag() == dwarf::DW_TAG_imported_declaration, 1268 "invalid tag", &N); 1269 if (auto *S = N.getRawScope()) 1270 AssertDI(isa<DIScope>(S), "invalid scope for imported entity", &N, S); 1271 AssertDI(isDINode(N.getRawEntity()), "invalid imported entity", &N, 1272 N.getRawEntity()); 1273 } 1274 1275 void Verifier::visitComdat(const Comdat &C) { 1276 // The Module is invalid if the GlobalValue has private linkage. Entities 1277 // with private linkage don't have entries in the symbol table. 1278 if (const GlobalValue *GV = M.getNamedValue(C.getName())) 1279 Assert(!GV->hasPrivateLinkage(), "comdat global value has private linkage", 1280 GV); 1281 } 1282 1283 void Verifier::visitModuleIdents(const Module &M) { 1284 const NamedMDNode *Idents = M.getNamedMetadata("llvm.ident"); 1285 if (!Idents) 1286 return; 1287 1288 // llvm.ident takes a list of metadata entry. Each entry has only one string. 1289 // Scan each llvm.ident entry and make sure that this requirement is met. 1290 for (const MDNode *N : Idents->operands()) { 1291 Assert(N->getNumOperands() == 1, 1292 "incorrect number of operands in llvm.ident metadata", N); 1293 Assert(dyn_cast_or_null<MDString>(N->getOperand(0)), 1294 ("invalid value for llvm.ident metadata entry operand" 1295 "(the operand should be a string)"), 1296 N->getOperand(0)); 1297 } 1298 } 1299 1300 void Verifier::visitModuleFlags(const Module &M) { 1301 const NamedMDNode *Flags = M.getModuleFlagsMetadata(); 1302 if (!Flags) return; 1303 1304 // Scan each flag, and track the flags and requirements. 1305 DenseMap<const MDString*, const MDNode*> SeenIDs; 1306 SmallVector<const MDNode*, 16> Requirements; 1307 for (const MDNode *MDN : Flags->operands()) 1308 visitModuleFlag(MDN, SeenIDs, Requirements); 1309 1310 // Validate that the requirements in the module are valid. 1311 for (const MDNode *Requirement : Requirements) { 1312 const MDString *Flag = cast<MDString>(Requirement->getOperand(0)); 1313 const Metadata *ReqValue = Requirement->getOperand(1); 1314 1315 const MDNode *Op = SeenIDs.lookup(Flag); 1316 if (!Op) { 1317 CheckFailed("invalid requirement on flag, flag is not present in module", 1318 Flag); 1319 continue; 1320 } 1321 1322 if (Op->getOperand(2) != ReqValue) { 1323 CheckFailed(("invalid requirement on flag, " 1324 "flag does not have the required value"), 1325 Flag); 1326 continue; 1327 } 1328 } 1329 } 1330 1331 void 1332 Verifier::visitModuleFlag(const MDNode *Op, 1333 DenseMap<const MDString *, const MDNode *> &SeenIDs, 1334 SmallVectorImpl<const MDNode *> &Requirements) { 1335 // Each module flag should have three arguments, the merge behavior (a 1336 // constant int), the flag ID (an MDString), and the value. 1337 Assert(Op->getNumOperands() == 3, 1338 "incorrect number of operands in module flag", Op); 1339 Module::ModFlagBehavior MFB; 1340 if (!Module::isValidModFlagBehavior(Op->getOperand(0), MFB)) { 1341 Assert( 1342 mdconst::dyn_extract_or_null<ConstantInt>(Op->getOperand(0)), 1343 "invalid behavior operand in module flag (expected constant integer)", 1344 Op->getOperand(0)); 1345 Assert(false, 1346 "invalid behavior operand in module flag (unexpected constant)", 1347 Op->getOperand(0)); 1348 } 1349 MDString *ID = dyn_cast_or_null<MDString>(Op->getOperand(1)); 1350 Assert(ID, "invalid ID operand in module flag (expected metadata string)", 1351 Op->getOperand(1)); 1352 1353 // Sanity check the values for behaviors with additional requirements. 1354 switch (MFB) { 1355 case Module::Error: 1356 case Module::Warning: 1357 case Module::Override: 1358 // These behavior types accept any value. 1359 break; 1360 1361 case Module::Max: { 1362 Assert(mdconst::dyn_extract_or_null<ConstantInt>(Op->getOperand(2)), 1363 "invalid value for 'max' module flag (expected constant integer)", 1364 Op->getOperand(2)); 1365 break; 1366 } 1367 1368 case Module::Require: { 1369 // The value should itself be an MDNode with two operands, a flag ID (an 1370 // MDString), and a value. 1371 MDNode *Value = dyn_cast<MDNode>(Op->getOperand(2)); 1372 Assert(Value && Value->getNumOperands() == 2, 1373 "invalid value for 'require' module flag (expected metadata pair)", 1374 Op->getOperand(2)); 1375 Assert(isa<MDString>(Value->getOperand(0)), 1376 ("invalid value for 'require' module flag " 1377 "(first value operand should be a string)"), 1378 Value->getOperand(0)); 1379 1380 // Append it to the list of requirements, to check once all module flags are 1381 // scanned. 1382 Requirements.push_back(Value); 1383 break; 1384 } 1385 1386 case Module::Append: 1387 case Module::AppendUnique: { 1388 // These behavior types require the operand be an MDNode. 1389 Assert(isa<MDNode>(Op->getOperand(2)), 1390 "invalid value for 'append'-type module flag " 1391 "(expected a metadata node)", 1392 Op->getOperand(2)); 1393 break; 1394 } 1395 } 1396 1397 // Unless this is a "requires" flag, check the ID is unique. 1398 if (MFB != Module::Require) { 1399 bool Inserted = SeenIDs.insert(std::make_pair(ID, Op)).second; 1400 Assert(Inserted, 1401 "module flag identifiers must be unique (or of 'require' type)", ID); 1402 } 1403 1404 if (ID->getString() == "wchar_size") { 1405 ConstantInt *Value 1406 = mdconst::dyn_extract_or_null<ConstantInt>(Op->getOperand(2)); 1407 Assert(Value, "wchar_size metadata requires constant integer argument"); 1408 } 1409 1410 if (ID->getString() == "Linker Options") { 1411 // If the llvm.linker.options named metadata exists, we assume that the 1412 // bitcode reader has upgraded the module flag. Otherwise the flag might 1413 // have been created by a client directly. 1414 Assert(M.getNamedMetadata("llvm.linker.options"), 1415 "'Linker Options' named metadata no longer supported"); 1416 } 1417 1418 if (ID->getString() == "CG Profile") { 1419 for (const MDOperand &MDO : cast<MDNode>(Op->getOperand(2))->operands()) 1420 visitModuleFlagCGProfileEntry(MDO); 1421 } 1422 } 1423 1424 void Verifier::visitModuleFlagCGProfileEntry(const MDOperand &MDO) { 1425 auto CheckFunction = [&](const MDOperand &FuncMDO) { 1426 if (!FuncMDO) 1427 return; 1428 auto F = dyn_cast<ValueAsMetadata>(FuncMDO); 1429 Assert(F && isa<Function>(F->getValue()), "expected a Function or null", 1430 FuncMDO); 1431 }; 1432 auto Node = dyn_cast_or_null<MDNode>(MDO); 1433 Assert(Node && Node->getNumOperands() == 3, "expected a MDNode triple", MDO); 1434 CheckFunction(Node->getOperand(0)); 1435 CheckFunction(Node->getOperand(1)); 1436 auto Count = dyn_cast_or_null<ConstantAsMetadata>(Node->getOperand(2)); 1437 Assert(Count && Count->getType()->isIntegerTy(), 1438 "expected an integer constant", Node->getOperand(2)); 1439 } 1440 1441 /// Return true if this attribute kind only applies to functions. 1442 static bool isFuncOnlyAttr(Attribute::AttrKind Kind) { 1443 switch (Kind) { 1444 case Attribute::NoReturn: 1445 case Attribute::NoCfCheck: 1446 case Attribute::NoUnwind: 1447 case Attribute::NoInline: 1448 case Attribute::AlwaysInline: 1449 case Attribute::OptimizeForSize: 1450 case Attribute::StackProtect: 1451 case Attribute::StackProtectReq: 1452 case Attribute::StackProtectStrong: 1453 case Attribute::SafeStack: 1454 case Attribute::ShadowCallStack: 1455 case Attribute::NoRedZone: 1456 case Attribute::NoImplicitFloat: 1457 case Attribute::Naked: 1458 case Attribute::InlineHint: 1459 case Attribute::StackAlignment: 1460 case Attribute::UWTable: 1461 case Attribute::NonLazyBind: 1462 case Attribute::ReturnsTwice: 1463 case Attribute::SanitizeAddress: 1464 case Attribute::SanitizeHWAddress: 1465 case Attribute::SanitizeThread: 1466 case Attribute::SanitizeMemory: 1467 case Attribute::MinSize: 1468 case Attribute::NoDuplicate: 1469 case Attribute::Builtin: 1470 case Attribute::NoBuiltin: 1471 case Attribute::Cold: 1472 case Attribute::OptForFuzzing: 1473 case Attribute::OptimizeNone: 1474 case Attribute::JumpTable: 1475 case Attribute::Convergent: 1476 case Attribute::ArgMemOnly: 1477 case Attribute::NoRecurse: 1478 case Attribute::InaccessibleMemOnly: 1479 case Attribute::InaccessibleMemOrArgMemOnly: 1480 case Attribute::AllocSize: 1481 case Attribute::Speculatable: 1482 case Attribute::StrictFP: 1483 return true; 1484 default: 1485 break; 1486 } 1487 return false; 1488 } 1489 1490 /// Return true if this is a function attribute that can also appear on 1491 /// arguments. 1492 static bool isFuncOrArgAttr(Attribute::AttrKind Kind) { 1493 return Kind == Attribute::ReadOnly || Kind == Attribute::WriteOnly || 1494 Kind == Attribute::ReadNone; 1495 } 1496 1497 void Verifier::verifyAttributeTypes(AttributeSet Attrs, bool IsFunction, 1498 const Value *V) { 1499 for (Attribute A : Attrs) { 1500 if (A.isStringAttribute()) 1501 continue; 1502 1503 if (isFuncOnlyAttr(A.getKindAsEnum())) { 1504 if (!IsFunction) { 1505 CheckFailed("Attribute '" + A.getAsString() + 1506 "' only applies to functions!", 1507 V); 1508 return; 1509 } 1510 } else if (IsFunction && !isFuncOrArgAttr(A.getKindAsEnum())) { 1511 CheckFailed("Attribute '" + A.getAsString() + 1512 "' does not apply to functions!", 1513 V); 1514 return; 1515 } 1516 } 1517 } 1518 1519 // VerifyParameterAttrs - Check the given attributes for an argument or return 1520 // value of the specified type. The value V is printed in error messages. 1521 void Verifier::verifyParameterAttrs(AttributeSet Attrs, Type *Ty, 1522 const Value *V) { 1523 if (!Attrs.hasAttributes()) 1524 return; 1525 1526 verifyAttributeTypes(Attrs, /*IsFunction=*/false, V); 1527 1528 // Check for mutually incompatible attributes. Only inreg is compatible with 1529 // sret. 1530 unsigned AttrCount = 0; 1531 AttrCount += Attrs.hasAttribute(Attribute::ByVal); 1532 AttrCount += Attrs.hasAttribute(Attribute::InAlloca); 1533 AttrCount += Attrs.hasAttribute(Attribute::StructRet) || 1534 Attrs.hasAttribute(Attribute::InReg); 1535 AttrCount += Attrs.hasAttribute(Attribute::Nest); 1536 Assert(AttrCount <= 1, "Attributes 'byval', 'inalloca', 'inreg', 'nest', " 1537 "and 'sret' are incompatible!", 1538 V); 1539 1540 Assert(!(Attrs.hasAttribute(Attribute::InAlloca) && 1541 Attrs.hasAttribute(Attribute::ReadOnly)), 1542 "Attributes " 1543 "'inalloca and readonly' are incompatible!", 1544 V); 1545 1546 Assert(!(Attrs.hasAttribute(Attribute::StructRet) && 1547 Attrs.hasAttribute(Attribute::Returned)), 1548 "Attributes " 1549 "'sret and returned' are incompatible!", 1550 V); 1551 1552 Assert(!(Attrs.hasAttribute(Attribute::ZExt) && 1553 Attrs.hasAttribute(Attribute::SExt)), 1554 "Attributes " 1555 "'zeroext and signext' are incompatible!", 1556 V); 1557 1558 Assert(!(Attrs.hasAttribute(Attribute::ReadNone) && 1559 Attrs.hasAttribute(Attribute::ReadOnly)), 1560 "Attributes " 1561 "'readnone and readonly' are incompatible!", 1562 V); 1563 1564 Assert(!(Attrs.hasAttribute(Attribute::ReadNone) && 1565 Attrs.hasAttribute(Attribute::WriteOnly)), 1566 "Attributes " 1567 "'readnone and writeonly' are incompatible!", 1568 V); 1569 1570 Assert(!(Attrs.hasAttribute(Attribute::ReadOnly) && 1571 Attrs.hasAttribute(Attribute::WriteOnly)), 1572 "Attributes " 1573 "'readonly and writeonly' are incompatible!", 1574 V); 1575 1576 Assert(!(Attrs.hasAttribute(Attribute::NoInline) && 1577 Attrs.hasAttribute(Attribute::AlwaysInline)), 1578 "Attributes " 1579 "'noinline and alwaysinline' are incompatible!", 1580 V); 1581 1582 AttrBuilder IncompatibleAttrs = AttributeFuncs::typeIncompatible(Ty); 1583 Assert(!AttrBuilder(Attrs).overlaps(IncompatibleAttrs), 1584 "Wrong types for attribute: " + 1585 AttributeSet::get(Context, IncompatibleAttrs).getAsString(), 1586 V); 1587 1588 if (PointerType *PTy = dyn_cast<PointerType>(Ty)) { 1589 SmallPtrSet<Type*, 4> Visited; 1590 if (!PTy->getElementType()->isSized(&Visited)) { 1591 Assert(!Attrs.hasAttribute(Attribute::ByVal) && 1592 !Attrs.hasAttribute(Attribute::InAlloca), 1593 "Attributes 'byval' and 'inalloca' do not support unsized types!", 1594 V); 1595 } 1596 if (!isa<PointerType>(PTy->getElementType())) 1597 Assert(!Attrs.hasAttribute(Attribute::SwiftError), 1598 "Attribute 'swifterror' only applies to parameters " 1599 "with pointer to pointer type!", 1600 V); 1601 } else { 1602 Assert(!Attrs.hasAttribute(Attribute::ByVal), 1603 "Attribute 'byval' only applies to parameters with pointer type!", 1604 V); 1605 Assert(!Attrs.hasAttribute(Attribute::SwiftError), 1606 "Attribute 'swifterror' only applies to parameters " 1607 "with pointer type!", 1608 V); 1609 } 1610 } 1611 1612 // Check parameter attributes against a function type. 1613 // The value V is printed in error messages. 1614 void Verifier::verifyFunctionAttrs(FunctionType *FT, AttributeList Attrs, 1615 const Value *V) { 1616 if (Attrs.isEmpty()) 1617 return; 1618 1619 bool SawNest = false; 1620 bool SawReturned = false; 1621 bool SawSRet = false; 1622 bool SawSwiftSelf = false; 1623 bool SawSwiftError = false; 1624 1625 // Verify return value attributes. 1626 AttributeSet RetAttrs = Attrs.getRetAttributes(); 1627 Assert((!RetAttrs.hasAttribute(Attribute::ByVal) && 1628 !RetAttrs.hasAttribute(Attribute::Nest) && 1629 !RetAttrs.hasAttribute(Attribute::StructRet) && 1630 !RetAttrs.hasAttribute(Attribute::NoCapture) && 1631 !RetAttrs.hasAttribute(Attribute::Returned) && 1632 !RetAttrs.hasAttribute(Attribute::InAlloca) && 1633 !RetAttrs.hasAttribute(Attribute::SwiftSelf) && 1634 !RetAttrs.hasAttribute(Attribute::SwiftError)), 1635 "Attributes 'byval', 'inalloca', 'nest', 'sret', 'nocapture', " 1636 "'returned', 'swiftself', and 'swifterror' do not apply to return " 1637 "values!", 1638 V); 1639 Assert((!RetAttrs.hasAttribute(Attribute::ReadOnly) && 1640 !RetAttrs.hasAttribute(Attribute::WriteOnly) && 1641 !RetAttrs.hasAttribute(Attribute::ReadNone)), 1642 "Attribute '" + RetAttrs.getAsString() + 1643 "' does not apply to function returns", 1644 V); 1645 verifyParameterAttrs(RetAttrs, FT->getReturnType(), V); 1646 1647 // Verify parameter attributes. 1648 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) { 1649 Type *Ty = FT->getParamType(i); 1650 AttributeSet ArgAttrs = Attrs.getParamAttributes(i); 1651 1652 verifyParameterAttrs(ArgAttrs, Ty, V); 1653 1654 if (ArgAttrs.hasAttribute(Attribute::Nest)) { 1655 Assert(!SawNest, "More than one parameter has attribute nest!", V); 1656 SawNest = true; 1657 } 1658 1659 if (ArgAttrs.hasAttribute(Attribute::Returned)) { 1660 Assert(!SawReturned, "More than one parameter has attribute returned!", 1661 V); 1662 Assert(Ty->canLosslesslyBitCastTo(FT->getReturnType()), 1663 "Incompatible argument and return types for 'returned' attribute", 1664 V); 1665 SawReturned = true; 1666 } 1667 1668 if (ArgAttrs.hasAttribute(Attribute::StructRet)) { 1669 Assert(!SawSRet, "Cannot have multiple 'sret' parameters!", V); 1670 Assert(i == 0 || i == 1, 1671 "Attribute 'sret' is not on first or second parameter!", V); 1672 SawSRet = true; 1673 } 1674 1675 if (ArgAttrs.hasAttribute(Attribute::SwiftSelf)) { 1676 Assert(!SawSwiftSelf, "Cannot have multiple 'swiftself' parameters!", V); 1677 SawSwiftSelf = true; 1678 } 1679 1680 if (ArgAttrs.hasAttribute(Attribute::SwiftError)) { 1681 Assert(!SawSwiftError, "Cannot have multiple 'swifterror' parameters!", 1682 V); 1683 SawSwiftError = true; 1684 } 1685 1686 if (ArgAttrs.hasAttribute(Attribute::InAlloca)) { 1687 Assert(i == FT->getNumParams() - 1, 1688 "inalloca isn't on the last parameter!", V); 1689 } 1690 } 1691 1692 if (!Attrs.hasAttributes(AttributeList::FunctionIndex)) 1693 return; 1694 1695 verifyAttributeTypes(Attrs.getFnAttributes(), /*IsFunction=*/true, V); 1696 1697 Assert(!(Attrs.hasFnAttribute(Attribute::ReadNone) && 1698 Attrs.hasFnAttribute(Attribute::ReadOnly)), 1699 "Attributes 'readnone and readonly' are incompatible!", V); 1700 1701 Assert(!(Attrs.hasFnAttribute(Attribute::ReadNone) && 1702 Attrs.hasFnAttribute(Attribute::WriteOnly)), 1703 "Attributes 'readnone and writeonly' are incompatible!", V); 1704 1705 Assert(!(Attrs.hasFnAttribute(Attribute::ReadOnly) && 1706 Attrs.hasFnAttribute(Attribute::WriteOnly)), 1707 "Attributes 'readonly and writeonly' are incompatible!", V); 1708 1709 Assert(!(Attrs.hasFnAttribute(Attribute::ReadNone) && 1710 Attrs.hasFnAttribute(Attribute::InaccessibleMemOrArgMemOnly)), 1711 "Attributes 'readnone and inaccessiblemem_or_argmemonly' are " 1712 "incompatible!", 1713 V); 1714 1715 Assert(!(Attrs.hasFnAttribute(Attribute::ReadNone) && 1716 Attrs.hasFnAttribute(Attribute::InaccessibleMemOnly)), 1717 "Attributes 'readnone and inaccessiblememonly' are incompatible!", V); 1718 1719 Assert(!(Attrs.hasFnAttribute(Attribute::NoInline) && 1720 Attrs.hasFnAttribute(Attribute::AlwaysInline)), 1721 "Attributes 'noinline and alwaysinline' are incompatible!", V); 1722 1723 if (Attrs.hasFnAttribute(Attribute::OptimizeNone)) { 1724 Assert(Attrs.hasFnAttribute(Attribute::NoInline), 1725 "Attribute 'optnone' requires 'noinline'!", V); 1726 1727 Assert(!Attrs.hasFnAttribute(Attribute::OptimizeForSize), 1728 "Attributes 'optsize and optnone' are incompatible!", V); 1729 1730 Assert(!Attrs.hasFnAttribute(Attribute::MinSize), 1731 "Attributes 'minsize and optnone' are incompatible!", V); 1732 } 1733 1734 if (Attrs.hasFnAttribute(Attribute::JumpTable)) { 1735 const GlobalValue *GV = cast<GlobalValue>(V); 1736 Assert(GV->hasGlobalUnnamedAddr(), 1737 "Attribute 'jumptable' requires 'unnamed_addr'", V); 1738 } 1739 1740 if (Attrs.hasFnAttribute(Attribute::AllocSize)) { 1741 std::pair<unsigned, Optional<unsigned>> Args = 1742 Attrs.getAllocSizeArgs(AttributeList::FunctionIndex); 1743 1744 auto CheckParam = [&](StringRef Name, unsigned ParamNo) { 1745 if (ParamNo >= FT->getNumParams()) { 1746 CheckFailed("'allocsize' " + Name + " argument is out of bounds", V); 1747 return false; 1748 } 1749 1750 if (!FT->getParamType(ParamNo)->isIntegerTy()) { 1751 CheckFailed("'allocsize' " + Name + 1752 " argument must refer to an integer parameter", 1753 V); 1754 return false; 1755 } 1756 1757 return true; 1758 }; 1759 1760 if (!CheckParam("element size", Args.first)) 1761 return; 1762 1763 if (Args.second && !CheckParam("number of elements", *Args.second)) 1764 return; 1765 } 1766 } 1767 1768 void Verifier::verifyFunctionMetadata( 1769 ArrayRef<std::pair<unsigned, MDNode *>> MDs) { 1770 for (const auto &Pair : MDs) { 1771 if (Pair.first == LLVMContext::MD_prof) { 1772 MDNode *MD = Pair.second; 1773 Assert(MD->getNumOperands() >= 2, 1774 "!prof annotations should have no less than 2 operands", MD); 1775 1776 // Check first operand. 1777 Assert(MD->getOperand(0) != nullptr, "first operand should not be null", 1778 MD); 1779 Assert(isa<MDString>(MD->getOperand(0)), 1780 "expected string with name of the !prof annotation", MD); 1781 MDString *MDS = cast<MDString>(MD->getOperand(0)); 1782 StringRef ProfName = MDS->getString(); 1783 Assert(ProfName.equals("function_entry_count") || 1784 ProfName.equals("synthetic_function_entry_count"), 1785 "first operand should be 'function_entry_count'" 1786 " or 'synthetic_function_entry_count'", 1787 MD); 1788 1789 // Check second operand. 1790 Assert(MD->getOperand(1) != nullptr, "second operand should not be null", 1791 MD); 1792 Assert(isa<ConstantAsMetadata>(MD->getOperand(1)), 1793 "expected integer argument to function_entry_count", MD); 1794 } 1795 } 1796 } 1797 1798 void Verifier::visitConstantExprsRecursively(const Constant *EntryC) { 1799 if (!ConstantExprVisited.insert(EntryC).second) 1800 return; 1801 1802 SmallVector<const Constant *, 16> Stack; 1803 Stack.push_back(EntryC); 1804 1805 while (!Stack.empty()) { 1806 const Constant *C = Stack.pop_back_val(); 1807 1808 // Check this constant expression. 1809 if (const auto *CE = dyn_cast<ConstantExpr>(C)) 1810 visitConstantExpr(CE); 1811 1812 if (const auto *GV = dyn_cast<GlobalValue>(C)) { 1813 // Global Values get visited separately, but we do need to make sure 1814 // that the global value is in the correct module 1815 Assert(GV->getParent() == &M, "Referencing global in another module!", 1816 EntryC, &M, GV, GV->getParent()); 1817 continue; 1818 } 1819 1820 // Visit all sub-expressions. 1821 for (const Use &U : C->operands()) { 1822 const auto *OpC = dyn_cast<Constant>(U); 1823 if (!OpC) 1824 continue; 1825 if (!ConstantExprVisited.insert(OpC).second) 1826 continue; 1827 Stack.push_back(OpC); 1828 } 1829 } 1830 } 1831 1832 void Verifier::visitConstantExpr(const ConstantExpr *CE) { 1833 if (CE->getOpcode() == Instruction::BitCast) 1834 Assert(CastInst::castIsValid(Instruction::BitCast, CE->getOperand(0), 1835 CE->getType()), 1836 "Invalid bitcast", CE); 1837 1838 if (CE->getOpcode() == Instruction::IntToPtr || 1839 CE->getOpcode() == Instruction::PtrToInt) { 1840 auto *PtrTy = CE->getOpcode() == Instruction::IntToPtr 1841 ? CE->getType() 1842 : CE->getOperand(0)->getType(); 1843 StringRef Msg = CE->getOpcode() == Instruction::IntToPtr 1844 ? "inttoptr not supported for non-integral pointers" 1845 : "ptrtoint not supported for non-integral pointers"; 1846 Assert( 1847 !DL.isNonIntegralPointerType(cast<PointerType>(PtrTy->getScalarType())), 1848 Msg); 1849 } 1850 } 1851 1852 bool Verifier::verifyAttributeCount(AttributeList Attrs, unsigned Params) { 1853 // There shouldn't be more attribute sets than there are parameters plus the 1854 // function and return value. 1855 return Attrs.getNumAttrSets() <= Params + 2; 1856 } 1857 1858 /// Verify that statepoint intrinsic is well formed. 1859 void Verifier::verifyStatepoint(ImmutableCallSite CS) { 1860 assert(CS.getCalledFunction() && 1861 CS.getCalledFunction()->getIntrinsicID() == 1862 Intrinsic::experimental_gc_statepoint); 1863 1864 const Instruction &CI = *CS.getInstruction(); 1865 1866 Assert(!CS.doesNotAccessMemory() && !CS.onlyReadsMemory() && 1867 !CS.onlyAccessesArgMemory(), 1868 "gc.statepoint must read and write all memory to preserve " 1869 "reordering restrictions required by safepoint semantics", 1870 &CI); 1871 1872 const Value *IDV = CS.getArgument(0); 1873 Assert(isa<ConstantInt>(IDV), "gc.statepoint ID must be a constant integer", 1874 &CI); 1875 1876 const Value *NumPatchBytesV = CS.getArgument(1); 1877 Assert(isa<ConstantInt>(NumPatchBytesV), 1878 "gc.statepoint number of patchable bytes must be a constant integer", 1879 &CI); 1880 const int64_t NumPatchBytes = 1881 cast<ConstantInt>(NumPatchBytesV)->getSExtValue(); 1882 assert(isInt<32>(NumPatchBytes) && "NumPatchBytesV is an i32!"); 1883 Assert(NumPatchBytes >= 0, "gc.statepoint number of patchable bytes must be " 1884 "positive", 1885 &CI); 1886 1887 const Value *Target = CS.getArgument(2); 1888 auto *PT = dyn_cast<PointerType>(Target->getType()); 1889 Assert(PT && PT->getElementType()->isFunctionTy(), 1890 "gc.statepoint callee must be of function pointer type", &CI, Target); 1891 FunctionType *TargetFuncType = cast<FunctionType>(PT->getElementType()); 1892 1893 const Value *NumCallArgsV = CS.getArgument(3); 1894 Assert(isa<ConstantInt>(NumCallArgsV), 1895 "gc.statepoint number of arguments to underlying call " 1896 "must be constant integer", 1897 &CI); 1898 const int NumCallArgs = cast<ConstantInt>(NumCallArgsV)->getZExtValue(); 1899 Assert(NumCallArgs >= 0, 1900 "gc.statepoint number of arguments to underlying call " 1901 "must be positive", 1902 &CI); 1903 const int NumParams = (int)TargetFuncType->getNumParams(); 1904 if (TargetFuncType->isVarArg()) { 1905 Assert(NumCallArgs >= NumParams, 1906 "gc.statepoint mismatch in number of vararg call args", &CI); 1907 1908 // TODO: Remove this limitation 1909 Assert(TargetFuncType->getReturnType()->isVoidTy(), 1910 "gc.statepoint doesn't support wrapping non-void " 1911 "vararg functions yet", 1912 &CI); 1913 } else 1914 Assert(NumCallArgs == NumParams, 1915 "gc.statepoint mismatch in number of call args", &CI); 1916 1917 const Value *FlagsV = CS.getArgument(4); 1918 Assert(isa<ConstantInt>(FlagsV), 1919 "gc.statepoint flags must be constant integer", &CI); 1920 const uint64_t Flags = cast<ConstantInt>(FlagsV)->getZExtValue(); 1921 Assert((Flags & ~(uint64_t)StatepointFlags::MaskAll) == 0, 1922 "unknown flag used in gc.statepoint flags argument", &CI); 1923 1924 // Verify that the types of the call parameter arguments match 1925 // the type of the wrapped callee. 1926 for (int i = 0; i < NumParams; i++) { 1927 Type *ParamType = TargetFuncType->getParamType(i); 1928 Type *ArgType = CS.getArgument(5 + i)->getType(); 1929 Assert(ArgType == ParamType, 1930 "gc.statepoint call argument does not match wrapped " 1931 "function type", 1932 &CI); 1933 } 1934 1935 const int EndCallArgsInx = 4 + NumCallArgs; 1936 1937 const Value *NumTransitionArgsV = CS.getArgument(EndCallArgsInx+1); 1938 Assert(isa<ConstantInt>(NumTransitionArgsV), 1939 "gc.statepoint number of transition arguments " 1940 "must be constant integer", 1941 &CI); 1942 const int NumTransitionArgs = 1943 cast<ConstantInt>(NumTransitionArgsV)->getZExtValue(); 1944 Assert(NumTransitionArgs >= 0, 1945 "gc.statepoint number of transition arguments must be positive", &CI); 1946 const int EndTransitionArgsInx = EndCallArgsInx + 1 + NumTransitionArgs; 1947 1948 const Value *NumDeoptArgsV = CS.getArgument(EndTransitionArgsInx+1); 1949 Assert(isa<ConstantInt>(NumDeoptArgsV), 1950 "gc.statepoint number of deoptimization arguments " 1951 "must be constant integer", 1952 &CI); 1953 const int NumDeoptArgs = cast<ConstantInt>(NumDeoptArgsV)->getZExtValue(); 1954 Assert(NumDeoptArgs >= 0, "gc.statepoint number of deoptimization arguments " 1955 "must be positive", 1956 &CI); 1957 1958 const int ExpectedNumArgs = 1959 7 + NumCallArgs + NumTransitionArgs + NumDeoptArgs; 1960 Assert(ExpectedNumArgs <= (int)CS.arg_size(), 1961 "gc.statepoint too few arguments according to length fields", &CI); 1962 1963 // Check that the only uses of this gc.statepoint are gc.result or 1964 // gc.relocate calls which are tied to this statepoint and thus part 1965 // of the same statepoint sequence 1966 for (const User *U : CI.users()) { 1967 const CallInst *Call = dyn_cast<const CallInst>(U); 1968 Assert(Call, "illegal use of statepoint token", &CI, U); 1969 if (!Call) continue; 1970 Assert(isa<GCRelocateInst>(Call) || isa<GCResultInst>(Call), 1971 "gc.result or gc.relocate are the only value uses " 1972 "of a gc.statepoint", 1973 &CI, U); 1974 if (isa<GCResultInst>(Call)) { 1975 Assert(Call->getArgOperand(0) == &CI, 1976 "gc.result connected to wrong gc.statepoint", &CI, Call); 1977 } else if (isa<GCRelocateInst>(Call)) { 1978 Assert(Call->getArgOperand(0) == &CI, 1979 "gc.relocate connected to wrong gc.statepoint", &CI, Call); 1980 } 1981 } 1982 1983 // Note: It is legal for a single derived pointer to be listed multiple 1984 // times. It's non-optimal, but it is legal. It can also happen after 1985 // insertion if we strip a bitcast away. 1986 // Note: It is really tempting to check that each base is relocated and 1987 // that a derived pointer is never reused as a base pointer. This turns 1988 // out to be problematic since optimizations run after safepoint insertion 1989 // can recognize equality properties that the insertion logic doesn't know 1990 // about. See example statepoint.ll in the verifier subdirectory 1991 } 1992 1993 void Verifier::verifyFrameRecoverIndices() { 1994 for (auto &Counts : FrameEscapeInfo) { 1995 Function *F = Counts.first; 1996 unsigned EscapedObjectCount = Counts.second.first; 1997 unsigned MaxRecoveredIndex = Counts.second.second; 1998 Assert(MaxRecoveredIndex <= EscapedObjectCount, 1999 "all indices passed to llvm.localrecover must be less than the " 2000 "number of arguments passed ot llvm.localescape in the parent " 2001 "function", 2002 F); 2003 } 2004 } 2005 2006 static Instruction *getSuccPad(TerminatorInst *Terminator) { 2007 BasicBlock *UnwindDest; 2008 if (auto *II = dyn_cast<InvokeInst>(Terminator)) 2009 UnwindDest = II->getUnwindDest(); 2010 else if (auto *CSI = dyn_cast<CatchSwitchInst>(Terminator)) 2011 UnwindDest = CSI->getUnwindDest(); 2012 else 2013 UnwindDest = cast<CleanupReturnInst>(Terminator)->getUnwindDest(); 2014 return UnwindDest->getFirstNonPHI(); 2015 } 2016 2017 void Verifier::verifySiblingFuncletUnwinds() { 2018 SmallPtrSet<Instruction *, 8> Visited; 2019 SmallPtrSet<Instruction *, 8> Active; 2020 for (const auto &Pair : SiblingFuncletInfo) { 2021 Instruction *PredPad = Pair.first; 2022 if (Visited.count(PredPad)) 2023 continue; 2024 Active.insert(PredPad); 2025 TerminatorInst *Terminator = Pair.second; 2026 do { 2027 Instruction *SuccPad = getSuccPad(Terminator); 2028 if (Active.count(SuccPad)) { 2029 // Found a cycle; report error 2030 Instruction *CyclePad = SuccPad; 2031 SmallVector<Instruction *, 8> CycleNodes; 2032 do { 2033 CycleNodes.push_back(CyclePad); 2034 TerminatorInst *CycleTerminator = SiblingFuncletInfo[CyclePad]; 2035 if (CycleTerminator != CyclePad) 2036 CycleNodes.push_back(CycleTerminator); 2037 CyclePad = getSuccPad(CycleTerminator); 2038 } while (CyclePad != SuccPad); 2039 Assert(false, "EH pads can't handle each other's exceptions", 2040 ArrayRef<Instruction *>(CycleNodes)); 2041 } 2042 // Don't re-walk a node we've already checked 2043 if (!Visited.insert(SuccPad).second) 2044 break; 2045 // Walk to this successor if it has a map entry. 2046 PredPad = SuccPad; 2047 auto TermI = SiblingFuncletInfo.find(PredPad); 2048 if (TermI == SiblingFuncletInfo.end()) 2049 break; 2050 Terminator = TermI->second; 2051 Active.insert(PredPad); 2052 } while (true); 2053 // Each node only has one successor, so we've walked all the active 2054 // nodes' successors. 2055 Active.clear(); 2056 } 2057 } 2058 2059 // visitFunction - Verify that a function is ok. 2060 // 2061 void Verifier::visitFunction(const Function &F) { 2062 visitGlobalValue(F); 2063 2064 // Check function arguments. 2065 FunctionType *FT = F.getFunctionType(); 2066 unsigned NumArgs = F.arg_size(); 2067 2068 Assert(&Context == &F.getContext(), 2069 "Function context does not match Module context!", &F); 2070 2071 Assert(!F.hasCommonLinkage(), "Functions may not have common linkage", &F); 2072 Assert(FT->getNumParams() == NumArgs, 2073 "# formal arguments must match # of arguments for function type!", &F, 2074 FT); 2075 Assert(F.getReturnType()->isFirstClassType() || 2076 F.getReturnType()->isVoidTy() || F.getReturnType()->isStructTy(), 2077 "Functions cannot return aggregate values!", &F); 2078 2079 Assert(!F.hasStructRetAttr() || F.getReturnType()->isVoidTy(), 2080 "Invalid struct return type!", &F); 2081 2082 AttributeList Attrs = F.getAttributes(); 2083 2084 Assert(verifyAttributeCount(Attrs, FT->getNumParams()), 2085 "Attribute after last parameter!", &F); 2086 2087 // Check function attributes. 2088 verifyFunctionAttrs(FT, Attrs, &F); 2089 2090 // On function declarations/definitions, we do not support the builtin 2091 // attribute. We do not check this in VerifyFunctionAttrs since that is 2092 // checking for Attributes that can/can not ever be on functions. 2093 Assert(!Attrs.hasFnAttribute(Attribute::Builtin), 2094 "Attribute 'builtin' can only be applied to a callsite.", &F); 2095 2096 // Check that this function meets the restrictions on this calling convention. 2097 // Sometimes varargs is used for perfectly forwarding thunks, so some of these 2098 // restrictions can be lifted. 2099 switch (F.getCallingConv()) { 2100 default: 2101 case CallingConv::C: 2102 break; 2103 case CallingConv::AMDGPU_KERNEL: 2104 case CallingConv::SPIR_KERNEL: 2105 Assert(F.getReturnType()->isVoidTy(), 2106 "Calling convention requires void return type", &F); 2107 LLVM_FALLTHROUGH; 2108 case CallingConv::AMDGPU_VS: 2109 case CallingConv::AMDGPU_HS: 2110 case CallingConv::AMDGPU_GS: 2111 case CallingConv::AMDGPU_PS: 2112 case CallingConv::AMDGPU_CS: 2113 Assert(!F.hasStructRetAttr(), 2114 "Calling convention does not allow sret", &F); 2115 LLVM_FALLTHROUGH; 2116 case CallingConv::Fast: 2117 case CallingConv::Cold: 2118 case CallingConv::Intel_OCL_BI: 2119 case CallingConv::PTX_Kernel: 2120 case CallingConv::PTX_Device: 2121 Assert(!F.isVarArg(), "Calling convention does not support varargs or " 2122 "perfect forwarding!", 2123 &F); 2124 break; 2125 } 2126 2127 bool isLLVMdotName = F.getName().size() >= 5 && 2128 F.getName().substr(0, 5) == "llvm."; 2129 2130 // Check that the argument values match the function type for this function... 2131 unsigned i = 0; 2132 for (const Argument &Arg : F.args()) { 2133 Assert(Arg.getType() == FT->getParamType(i), 2134 "Argument value does not match function argument type!", &Arg, 2135 FT->getParamType(i)); 2136 Assert(Arg.getType()->isFirstClassType(), 2137 "Function arguments must have first-class types!", &Arg); 2138 if (!isLLVMdotName) { 2139 Assert(!Arg.getType()->isMetadataTy(), 2140 "Function takes metadata but isn't an intrinsic", &Arg, &F); 2141 Assert(!Arg.getType()->isTokenTy(), 2142 "Function takes token but isn't an intrinsic", &Arg, &F); 2143 } 2144 2145 // Check that swifterror argument is only used by loads and stores. 2146 if (Attrs.hasParamAttribute(i, Attribute::SwiftError)) { 2147 verifySwiftErrorValue(&Arg); 2148 } 2149 ++i; 2150 } 2151 2152 if (!isLLVMdotName) 2153 Assert(!F.getReturnType()->isTokenTy(), 2154 "Functions returns a token but isn't an intrinsic", &F); 2155 2156 // Get the function metadata attachments. 2157 SmallVector<std::pair<unsigned, MDNode *>, 4> MDs; 2158 F.getAllMetadata(MDs); 2159 assert(F.hasMetadata() != MDs.empty() && "Bit out-of-sync"); 2160 verifyFunctionMetadata(MDs); 2161 2162 // Check validity of the personality function 2163 if (F.hasPersonalityFn()) { 2164 auto *Per = dyn_cast<Function>(F.getPersonalityFn()->stripPointerCasts()); 2165 if (Per) 2166 Assert(Per->getParent() == F.getParent(), 2167 "Referencing personality function in another module!", 2168 &F, F.getParent(), Per, Per->getParent()); 2169 } 2170 2171 if (F.isMaterializable()) { 2172 // Function has a body somewhere we can't see. 2173 Assert(MDs.empty(), "unmaterialized function cannot have metadata", &F, 2174 MDs.empty() ? nullptr : MDs.front().second); 2175 } else if (F.isDeclaration()) { 2176 for (const auto &I : MDs) { 2177 AssertDI(I.first != LLVMContext::MD_dbg, 2178 "function declaration may not have a !dbg attachment", &F); 2179 Assert(I.first != LLVMContext::MD_prof, 2180 "function declaration may not have a !prof attachment", &F); 2181 2182 // Verify the metadata itself. 2183 visitMDNode(*I.second); 2184 } 2185 Assert(!F.hasPersonalityFn(), 2186 "Function declaration shouldn't have a personality routine", &F); 2187 } else { 2188 // Verify that this function (which has a body) is not named "llvm.*". It 2189 // is not legal to define intrinsics. 2190 Assert(!isLLVMdotName, "llvm intrinsics cannot be defined!", &F); 2191 2192 // Check the entry node 2193 const BasicBlock *Entry = &F.getEntryBlock(); 2194 Assert(pred_empty(Entry), 2195 "Entry block to function must not have predecessors!", Entry); 2196 2197 // The address of the entry block cannot be taken, unless it is dead. 2198 if (Entry->hasAddressTaken()) { 2199 Assert(!BlockAddress::lookup(Entry)->isConstantUsed(), 2200 "blockaddress may not be used with the entry block!", Entry); 2201 } 2202 2203 unsigned NumDebugAttachments = 0, NumProfAttachments = 0; 2204 // Visit metadata attachments. 2205 for (const auto &I : MDs) { 2206 // Verify that the attachment is legal. 2207 switch (I.first) { 2208 default: 2209 break; 2210 case LLVMContext::MD_dbg: { 2211 ++NumDebugAttachments; 2212 AssertDI(NumDebugAttachments == 1, 2213 "function must have a single !dbg attachment", &F, I.second); 2214 AssertDI(isa<DISubprogram>(I.second), 2215 "function !dbg attachment must be a subprogram", &F, I.second); 2216 auto *SP = cast<DISubprogram>(I.second); 2217 const Function *&AttachedTo = DISubprogramAttachments[SP]; 2218 AssertDI(!AttachedTo || AttachedTo == &F, 2219 "DISubprogram attached to more than one function", SP, &F); 2220 AttachedTo = &F; 2221 break; 2222 } 2223 case LLVMContext::MD_prof: 2224 ++NumProfAttachments; 2225 Assert(NumProfAttachments == 1, 2226 "function must have a single !prof attachment", &F, I.second); 2227 break; 2228 } 2229 2230 // Verify the metadata itself. 2231 visitMDNode(*I.second); 2232 } 2233 } 2234 2235 // If this function is actually an intrinsic, verify that it is only used in 2236 // direct call/invokes, never having its "address taken". 2237 // Only do this if the module is materialized, otherwise we don't have all the 2238 // uses. 2239 if (F.getIntrinsicID() && F.getParent()->isMaterialized()) { 2240 const User *U; 2241 if (F.hasAddressTaken(&U)) 2242 Assert(false, "Invalid user of intrinsic instruction!", U); 2243 } 2244 2245 auto *N = F.getSubprogram(); 2246 HasDebugInfo = (N != nullptr); 2247 if (!HasDebugInfo) 2248 return; 2249 2250 // Check that all !dbg attachments lead to back to N (or, at least, another 2251 // subprogram that describes the same function). 2252 // 2253 // FIXME: Check this incrementally while visiting !dbg attachments. 2254 // FIXME: Only check when N is the canonical subprogram for F. 2255 SmallPtrSet<const MDNode *, 32> Seen; 2256 for (auto &BB : F) 2257 for (auto &I : BB) { 2258 // Be careful about using DILocation here since we might be dealing with 2259 // broken code (this is the Verifier after all). 2260 DILocation *DL = 2261 dyn_cast_or_null<DILocation>(I.getDebugLoc().getAsMDNode()); 2262 if (!DL) 2263 continue; 2264 if (!Seen.insert(DL).second) 2265 continue; 2266 2267 Metadata *Parent = DL->getRawScope(); 2268 AssertDI(Parent && isa<DILocalScope>(Parent), 2269 "DILocation's scope must be a DILocalScope", N, &F, &I, DL, 2270 Parent); 2271 DILocalScope *Scope = DL->getInlinedAtScope(); 2272 if (Scope && !Seen.insert(Scope).second) 2273 continue; 2274 2275 DISubprogram *SP = Scope ? Scope->getSubprogram() : nullptr; 2276 2277 // Scope and SP could be the same MDNode and we don't want to skip 2278 // validation in that case 2279 if (SP && ((Scope != SP) && !Seen.insert(SP).second)) 2280 continue; 2281 2282 // FIXME: Once N is canonical, check "SP == &N". 2283 AssertDI(SP->describes(&F), 2284 "!dbg attachment points at wrong subprogram for function", N, &F, 2285 &I, DL, Scope, SP); 2286 } 2287 } 2288 2289 // verifyBasicBlock - Verify that a basic block is well formed... 2290 // 2291 void Verifier::visitBasicBlock(BasicBlock &BB) { 2292 InstsInThisBlock.clear(); 2293 2294 // Ensure that basic blocks have terminators! 2295 Assert(BB.getTerminator(), "Basic Block does not have terminator!", &BB); 2296 2297 // Check constraints that this basic block imposes on all of the PHI nodes in 2298 // it. 2299 if (isa<PHINode>(BB.front())) { 2300 SmallVector<BasicBlock*, 8> Preds(pred_begin(&BB), pred_end(&BB)); 2301 SmallVector<std::pair<BasicBlock*, Value*>, 8> Values; 2302 llvm::sort(Preds.begin(), Preds.end()); 2303 for (const PHINode &PN : BB.phis()) { 2304 // Ensure that PHI nodes have at least one entry! 2305 Assert(PN.getNumIncomingValues() != 0, 2306 "PHI nodes must have at least one entry. If the block is dead, " 2307 "the PHI should be removed!", 2308 &PN); 2309 Assert(PN.getNumIncomingValues() == Preds.size(), 2310 "PHINode should have one entry for each predecessor of its " 2311 "parent basic block!", 2312 &PN); 2313 2314 // Get and sort all incoming values in the PHI node... 2315 Values.clear(); 2316 Values.reserve(PN.getNumIncomingValues()); 2317 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) 2318 Values.push_back( 2319 std::make_pair(PN.getIncomingBlock(i), PN.getIncomingValue(i))); 2320 llvm::sort(Values.begin(), Values.end()); 2321 2322 for (unsigned i = 0, e = Values.size(); i != e; ++i) { 2323 // Check to make sure that if there is more than one entry for a 2324 // particular basic block in this PHI node, that the incoming values are 2325 // all identical. 2326 // 2327 Assert(i == 0 || Values[i].first != Values[i - 1].first || 2328 Values[i].second == Values[i - 1].second, 2329 "PHI node has multiple entries for the same basic block with " 2330 "different incoming values!", 2331 &PN, Values[i].first, Values[i].second, Values[i - 1].second); 2332 2333 // Check to make sure that the predecessors and PHI node entries are 2334 // matched up. 2335 Assert(Values[i].first == Preds[i], 2336 "PHI node entries do not match predecessors!", &PN, 2337 Values[i].first, Preds[i]); 2338 } 2339 } 2340 } 2341 2342 // Check that all instructions have their parent pointers set up correctly. 2343 for (auto &I : BB) 2344 { 2345 Assert(I.getParent() == &BB, "Instruction has bogus parent pointer!"); 2346 } 2347 } 2348 2349 void Verifier::visitTerminatorInst(TerminatorInst &I) { 2350 // Ensure that terminators only exist at the end of the basic block. 2351 Assert(&I == I.getParent()->getTerminator(), 2352 "Terminator found in the middle of a basic block!", I.getParent()); 2353 visitInstruction(I); 2354 } 2355 2356 void Verifier::visitBranchInst(BranchInst &BI) { 2357 if (BI.isConditional()) { 2358 Assert(BI.getCondition()->getType()->isIntegerTy(1), 2359 "Branch condition is not 'i1' type!", &BI, BI.getCondition()); 2360 } 2361 visitTerminatorInst(BI); 2362 } 2363 2364 void Verifier::visitReturnInst(ReturnInst &RI) { 2365 Function *F = RI.getParent()->getParent(); 2366 unsigned N = RI.getNumOperands(); 2367 if (F->getReturnType()->isVoidTy()) 2368 Assert(N == 0, 2369 "Found return instr that returns non-void in Function of void " 2370 "return type!", 2371 &RI, F->getReturnType()); 2372 else 2373 Assert(N == 1 && F->getReturnType() == RI.getOperand(0)->getType(), 2374 "Function return type does not match operand " 2375 "type of return inst!", 2376 &RI, F->getReturnType()); 2377 2378 // Check to make sure that the return value has necessary properties for 2379 // terminators... 2380 visitTerminatorInst(RI); 2381 } 2382 2383 void Verifier::visitSwitchInst(SwitchInst &SI) { 2384 // Check to make sure that all of the constants in the switch instruction 2385 // have the same type as the switched-on value. 2386 Type *SwitchTy = SI.getCondition()->getType(); 2387 SmallPtrSet<ConstantInt*, 32> Constants; 2388 for (auto &Case : SI.cases()) { 2389 Assert(Case.getCaseValue()->getType() == SwitchTy, 2390 "Switch constants must all be same type as switch value!", &SI); 2391 Assert(Constants.insert(Case.getCaseValue()).second, 2392 "Duplicate integer as switch case", &SI, Case.getCaseValue()); 2393 } 2394 2395 visitTerminatorInst(SI); 2396 } 2397 2398 void Verifier::visitIndirectBrInst(IndirectBrInst &BI) { 2399 Assert(BI.getAddress()->getType()->isPointerTy(), 2400 "Indirectbr operand must have pointer type!", &BI); 2401 for (unsigned i = 0, e = BI.getNumDestinations(); i != e; ++i) 2402 Assert(BI.getDestination(i)->getType()->isLabelTy(), 2403 "Indirectbr destinations must all have pointer type!", &BI); 2404 2405 visitTerminatorInst(BI); 2406 } 2407 2408 void Verifier::visitSelectInst(SelectInst &SI) { 2409 Assert(!SelectInst::areInvalidOperands(SI.getOperand(0), SI.getOperand(1), 2410 SI.getOperand(2)), 2411 "Invalid operands for select instruction!", &SI); 2412 2413 Assert(SI.getTrueValue()->getType() == SI.getType(), 2414 "Select values must have same type as select instruction!", &SI); 2415 visitInstruction(SI); 2416 } 2417 2418 /// visitUserOp1 - User defined operators shouldn't live beyond the lifetime of 2419 /// a pass, if any exist, it's an error. 2420 /// 2421 void Verifier::visitUserOp1(Instruction &I) { 2422 Assert(false, "User-defined operators should not live outside of a pass!", &I); 2423 } 2424 2425 void Verifier::visitTruncInst(TruncInst &I) { 2426 // Get the source and destination types 2427 Type *SrcTy = I.getOperand(0)->getType(); 2428 Type *DestTy = I.getType(); 2429 2430 // Get the size of the types in bits, we'll need this later 2431 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); 2432 unsigned DestBitSize = DestTy->getScalarSizeInBits(); 2433 2434 Assert(SrcTy->isIntOrIntVectorTy(), "Trunc only operates on integer", &I); 2435 Assert(DestTy->isIntOrIntVectorTy(), "Trunc only produces integer", &I); 2436 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), 2437 "trunc source and destination must both be a vector or neither", &I); 2438 Assert(SrcBitSize > DestBitSize, "DestTy too big for Trunc", &I); 2439 2440 visitInstruction(I); 2441 } 2442 2443 void Verifier::visitZExtInst(ZExtInst &I) { 2444 // Get the source and destination types 2445 Type *SrcTy = I.getOperand(0)->getType(); 2446 Type *DestTy = I.getType(); 2447 2448 // Get the size of the types in bits, we'll need this later 2449 Assert(SrcTy->isIntOrIntVectorTy(), "ZExt only operates on integer", &I); 2450 Assert(DestTy->isIntOrIntVectorTy(), "ZExt only produces an integer", &I); 2451 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), 2452 "zext source and destination must both be a vector or neither", &I); 2453 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); 2454 unsigned DestBitSize = DestTy->getScalarSizeInBits(); 2455 2456 Assert(SrcBitSize < DestBitSize, "Type too small for ZExt", &I); 2457 2458 visitInstruction(I); 2459 } 2460 2461 void Verifier::visitSExtInst(SExtInst &I) { 2462 // Get the source and destination types 2463 Type *SrcTy = I.getOperand(0)->getType(); 2464 Type *DestTy = I.getType(); 2465 2466 // Get the size of the types in bits, we'll need this later 2467 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); 2468 unsigned DestBitSize = DestTy->getScalarSizeInBits(); 2469 2470 Assert(SrcTy->isIntOrIntVectorTy(), "SExt only operates on integer", &I); 2471 Assert(DestTy->isIntOrIntVectorTy(), "SExt only produces an integer", &I); 2472 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), 2473 "sext source and destination must both be a vector or neither", &I); 2474 Assert(SrcBitSize < DestBitSize, "Type too small for SExt", &I); 2475 2476 visitInstruction(I); 2477 } 2478 2479 void Verifier::visitFPTruncInst(FPTruncInst &I) { 2480 // Get the source and destination types 2481 Type *SrcTy = I.getOperand(0)->getType(); 2482 Type *DestTy = I.getType(); 2483 // Get the size of the types in bits, we'll need this later 2484 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); 2485 unsigned DestBitSize = DestTy->getScalarSizeInBits(); 2486 2487 Assert(SrcTy->isFPOrFPVectorTy(), "FPTrunc only operates on FP", &I); 2488 Assert(DestTy->isFPOrFPVectorTy(), "FPTrunc only produces an FP", &I); 2489 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), 2490 "fptrunc source and destination must both be a vector or neither", &I); 2491 Assert(SrcBitSize > DestBitSize, "DestTy too big for FPTrunc", &I); 2492 2493 visitInstruction(I); 2494 } 2495 2496 void Verifier::visitFPExtInst(FPExtInst &I) { 2497 // Get the source and destination types 2498 Type *SrcTy = I.getOperand(0)->getType(); 2499 Type *DestTy = I.getType(); 2500 2501 // Get the size of the types in bits, we'll need this later 2502 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); 2503 unsigned DestBitSize = DestTy->getScalarSizeInBits(); 2504 2505 Assert(SrcTy->isFPOrFPVectorTy(), "FPExt only operates on FP", &I); 2506 Assert(DestTy->isFPOrFPVectorTy(), "FPExt only produces an FP", &I); 2507 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), 2508 "fpext source and destination must both be a vector or neither", &I); 2509 Assert(SrcBitSize < DestBitSize, "DestTy too small for FPExt", &I); 2510 2511 visitInstruction(I); 2512 } 2513 2514 void Verifier::visitUIToFPInst(UIToFPInst &I) { 2515 // Get the source and destination types 2516 Type *SrcTy = I.getOperand(0)->getType(); 2517 Type *DestTy = I.getType(); 2518 2519 bool SrcVec = SrcTy->isVectorTy(); 2520 bool DstVec = DestTy->isVectorTy(); 2521 2522 Assert(SrcVec == DstVec, 2523 "UIToFP source and dest must both be vector or scalar", &I); 2524 Assert(SrcTy->isIntOrIntVectorTy(), 2525 "UIToFP source must be integer or integer vector", &I); 2526 Assert(DestTy->isFPOrFPVectorTy(), "UIToFP result must be FP or FP vector", 2527 &I); 2528 2529 if (SrcVec && DstVec) 2530 Assert(cast<VectorType>(SrcTy)->getNumElements() == 2531 cast<VectorType>(DestTy)->getNumElements(), 2532 "UIToFP source and dest vector length mismatch", &I); 2533 2534 visitInstruction(I); 2535 } 2536 2537 void Verifier::visitSIToFPInst(SIToFPInst &I) { 2538 // Get the source and destination types 2539 Type *SrcTy = I.getOperand(0)->getType(); 2540 Type *DestTy = I.getType(); 2541 2542 bool SrcVec = SrcTy->isVectorTy(); 2543 bool DstVec = DestTy->isVectorTy(); 2544 2545 Assert(SrcVec == DstVec, 2546 "SIToFP source and dest must both be vector or scalar", &I); 2547 Assert(SrcTy->isIntOrIntVectorTy(), 2548 "SIToFP source must be integer or integer vector", &I); 2549 Assert(DestTy->isFPOrFPVectorTy(), "SIToFP result must be FP or FP vector", 2550 &I); 2551 2552 if (SrcVec && DstVec) 2553 Assert(cast<VectorType>(SrcTy)->getNumElements() == 2554 cast<VectorType>(DestTy)->getNumElements(), 2555 "SIToFP source and dest vector length mismatch", &I); 2556 2557 visitInstruction(I); 2558 } 2559 2560 void Verifier::visitFPToUIInst(FPToUIInst &I) { 2561 // Get the source and destination types 2562 Type *SrcTy = I.getOperand(0)->getType(); 2563 Type *DestTy = I.getType(); 2564 2565 bool SrcVec = SrcTy->isVectorTy(); 2566 bool DstVec = DestTy->isVectorTy(); 2567 2568 Assert(SrcVec == DstVec, 2569 "FPToUI source and dest must both be vector or scalar", &I); 2570 Assert(SrcTy->isFPOrFPVectorTy(), "FPToUI source must be FP or FP vector", 2571 &I); 2572 Assert(DestTy->isIntOrIntVectorTy(), 2573 "FPToUI result must be integer or integer vector", &I); 2574 2575 if (SrcVec && DstVec) 2576 Assert(cast<VectorType>(SrcTy)->getNumElements() == 2577 cast<VectorType>(DestTy)->getNumElements(), 2578 "FPToUI source and dest vector length mismatch", &I); 2579 2580 visitInstruction(I); 2581 } 2582 2583 void Verifier::visitFPToSIInst(FPToSIInst &I) { 2584 // Get the source and destination types 2585 Type *SrcTy = I.getOperand(0)->getType(); 2586 Type *DestTy = I.getType(); 2587 2588 bool SrcVec = SrcTy->isVectorTy(); 2589 bool DstVec = DestTy->isVectorTy(); 2590 2591 Assert(SrcVec == DstVec, 2592 "FPToSI source and dest must both be vector or scalar", &I); 2593 Assert(SrcTy->isFPOrFPVectorTy(), "FPToSI source must be FP or FP vector", 2594 &I); 2595 Assert(DestTy->isIntOrIntVectorTy(), 2596 "FPToSI result must be integer or integer vector", &I); 2597 2598 if (SrcVec && DstVec) 2599 Assert(cast<VectorType>(SrcTy)->getNumElements() == 2600 cast<VectorType>(DestTy)->getNumElements(), 2601 "FPToSI source and dest vector length mismatch", &I); 2602 2603 visitInstruction(I); 2604 } 2605 2606 void Verifier::visitPtrToIntInst(PtrToIntInst &I) { 2607 // Get the source and destination types 2608 Type *SrcTy = I.getOperand(0)->getType(); 2609 Type *DestTy = I.getType(); 2610 2611 Assert(SrcTy->isPtrOrPtrVectorTy(), "PtrToInt source must be pointer", &I); 2612 2613 if (auto *PTy = dyn_cast<PointerType>(SrcTy->getScalarType())) 2614 Assert(!DL.isNonIntegralPointerType(PTy), 2615 "ptrtoint not supported for non-integral pointers"); 2616 2617 Assert(DestTy->isIntOrIntVectorTy(), "PtrToInt result must be integral", &I); 2618 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), "PtrToInt type mismatch", 2619 &I); 2620 2621 if (SrcTy->isVectorTy()) { 2622 VectorType *VSrc = dyn_cast<VectorType>(SrcTy); 2623 VectorType *VDest = dyn_cast<VectorType>(DestTy); 2624 Assert(VSrc->getNumElements() == VDest->getNumElements(), 2625 "PtrToInt Vector width mismatch", &I); 2626 } 2627 2628 visitInstruction(I); 2629 } 2630 2631 void Verifier::visitIntToPtrInst(IntToPtrInst &I) { 2632 // Get the source and destination types 2633 Type *SrcTy = I.getOperand(0)->getType(); 2634 Type *DestTy = I.getType(); 2635 2636 Assert(SrcTy->isIntOrIntVectorTy(), 2637 "IntToPtr source must be an integral", &I); 2638 Assert(DestTy->isPtrOrPtrVectorTy(), "IntToPtr result must be a pointer", &I); 2639 2640 if (auto *PTy = dyn_cast<PointerType>(DestTy->getScalarType())) 2641 Assert(!DL.isNonIntegralPointerType(PTy), 2642 "inttoptr not supported for non-integral pointers"); 2643 2644 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), "IntToPtr type mismatch", 2645 &I); 2646 if (SrcTy->isVectorTy()) { 2647 VectorType *VSrc = dyn_cast<VectorType>(SrcTy); 2648 VectorType *VDest = dyn_cast<VectorType>(DestTy); 2649 Assert(VSrc->getNumElements() == VDest->getNumElements(), 2650 "IntToPtr Vector width mismatch", &I); 2651 } 2652 visitInstruction(I); 2653 } 2654 2655 void Verifier::visitBitCastInst(BitCastInst &I) { 2656 Assert( 2657 CastInst::castIsValid(Instruction::BitCast, I.getOperand(0), I.getType()), 2658 "Invalid bitcast", &I); 2659 visitInstruction(I); 2660 } 2661 2662 void Verifier::visitAddrSpaceCastInst(AddrSpaceCastInst &I) { 2663 Type *SrcTy = I.getOperand(0)->getType(); 2664 Type *DestTy = I.getType(); 2665 2666 Assert(SrcTy->isPtrOrPtrVectorTy(), "AddrSpaceCast source must be a pointer", 2667 &I); 2668 Assert(DestTy->isPtrOrPtrVectorTy(), "AddrSpaceCast result must be a pointer", 2669 &I); 2670 Assert(SrcTy->getPointerAddressSpace() != DestTy->getPointerAddressSpace(), 2671 "AddrSpaceCast must be between different address spaces", &I); 2672 if (SrcTy->isVectorTy()) 2673 Assert(SrcTy->getVectorNumElements() == DestTy->getVectorNumElements(), 2674 "AddrSpaceCast vector pointer number of elements mismatch", &I); 2675 visitInstruction(I); 2676 } 2677 2678 /// visitPHINode - Ensure that a PHI node is well formed. 2679 /// 2680 void Verifier::visitPHINode(PHINode &PN) { 2681 // Ensure that the PHI nodes are all grouped together at the top of the block. 2682 // This can be tested by checking whether the instruction before this is 2683 // either nonexistent (because this is begin()) or is a PHI node. If not, 2684 // then there is some other instruction before a PHI. 2685 Assert(&PN == &PN.getParent()->front() || 2686 isa<PHINode>(--BasicBlock::iterator(&PN)), 2687 "PHI nodes not grouped at top of basic block!", &PN, PN.getParent()); 2688 2689 // Check that a PHI doesn't yield a Token. 2690 Assert(!PN.getType()->isTokenTy(), "PHI nodes cannot have token type!"); 2691 2692 // Check that all of the values of the PHI node have the same type as the 2693 // result, and that the incoming blocks are really basic blocks. 2694 for (Value *IncValue : PN.incoming_values()) { 2695 Assert(PN.getType() == IncValue->getType(), 2696 "PHI node operands are not the same type as the result!", &PN); 2697 } 2698 2699 // All other PHI node constraints are checked in the visitBasicBlock method. 2700 2701 visitInstruction(PN); 2702 } 2703 2704 void Verifier::verifyCallSite(CallSite CS) { 2705 Instruction *I = CS.getInstruction(); 2706 2707 Assert(CS.getCalledValue()->getType()->isPointerTy(), 2708 "Called function must be a pointer!", I); 2709 PointerType *FPTy = cast<PointerType>(CS.getCalledValue()->getType()); 2710 2711 Assert(FPTy->getElementType()->isFunctionTy(), 2712 "Called function is not pointer to function type!", I); 2713 2714 Assert(FPTy->getElementType() == CS.getFunctionType(), 2715 "Called function is not the same type as the call!", I); 2716 2717 FunctionType *FTy = CS.getFunctionType(); 2718 2719 // Verify that the correct number of arguments are being passed 2720 if (FTy->isVarArg()) 2721 Assert(CS.arg_size() >= FTy->getNumParams(), 2722 "Called function requires more parameters than were provided!", I); 2723 else 2724 Assert(CS.arg_size() == FTy->getNumParams(), 2725 "Incorrect number of arguments passed to called function!", I); 2726 2727 // Verify that all arguments to the call match the function type. 2728 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) 2729 Assert(CS.getArgument(i)->getType() == FTy->getParamType(i), 2730 "Call parameter type does not match function signature!", 2731 CS.getArgument(i), FTy->getParamType(i), I); 2732 2733 AttributeList Attrs = CS.getAttributes(); 2734 2735 Assert(verifyAttributeCount(Attrs, CS.arg_size()), 2736 "Attribute after last parameter!", I); 2737 2738 if (Attrs.hasAttribute(AttributeList::FunctionIndex, Attribute::Speculatable)) { 2739 // Don't allow speculatable on call sites, unless the underlying function 2740 // declaration is also speculatable. 2741 Function *Callee 2742 = dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts()); 2743 Assert(Callee && Callee->isSpeculatable(), 2744 "speculatable attribute may not apply to call sites", I); 2745 } 2746 2747 // Verify call attributes. 2748 verifyFunctionAttrs(FTy, Attrs, I); 2749 2750 // Conservatively check the inalloca argument. 2751 // We have a bug if we can find that there is an underlying alloca without 2752 // inalloca. 2753 if (CS.hasInAllocaArgument()) { 2754 Value *InAllocaArg = CS.getArgument(FTy->getNumParams() - 1); 2755 if (auto AI = dyn_cast<AllocaInst>(InAllocaArg->stripInBoundsOffsets())) 2756 Assert(AI->isUsedWithInAlloca(), 2757 "inalloca argument for call has mismatched alloca", AI, I); 2758 } 2759 2760 // For each argument of the callsite, if it has the swifterror argument, 2761 // make sure the underlying alloca/parameter it comes from has a swifterror as 2762 // well. 2763 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) 2764 if (CS.paramHasAttr(i, Attribute::SwiftError)) { 2765 Value *SwiftErrorArg = CS.getArgument(i); 2766 if (auto AI = dyn_cast<AllocaInst>(SwiftErrorArg->stripInBoundsOffsets())) { 2767 Assert(AI->isSwiftError(), 2768 "swifterror argument for call has mismatched alloca", AI, I); 2769 continue; 2770 } 2771 auto ArgI = dyn_cast<Argument>(SwiftErrorArg); 2772 Assert(ArgI, "swifterror argument should come from an alloca or parameter", SwiftErrorArg, I); 2773 Assert(ArgI->hasSwiftErrorAttr(), 2774 "swifterror argument for call has mismatched parameter", ArgI, I); 2775 } 2776 2777 if (FTy->isVarArg()) { 2778 // FIXME? is 'nest' even legal here? 2779 bool SawNest = false; 2780 bool SawReturned = false; 2781 2782 for (unsigned Idx = 0; Idx < FTy->getNumParams(); ++Idx) { 2783 if (Attrs.hasParamAttribute(Idx, Attribute::Nest)) 2784 SawNest = true; 2785 if (Attrs.hasParamAttribute(Idx, Attribute::Returned)) 2786 SawReturned = true; 2787 } 2788 2789 // Check attributes on the varargs part. 2790 for (unsigned Idx = FTy->getNumParams(); Idx < CS.arg_size(); ++Idx) { 2791 Type *Ty = CS.getArgument(Idx)->getType(); 2792 AttributeSet ArgAttrs = Attrs.getParamAttributes(Idx); 2793 verifyParameterAttrs(ArgAttrs, Ty, I); 2794 2795 if (ArgAttrs.hasAttribute(Attribute::Nest)) { 2796 Assert(!SawNest, "More than one parameter has attribute nest!", I); 2797 SawNest = true; 2798 } 2799 2800 if (ArgAttrs.hasAttribute(Attribute::Returned)) { 2801 Assert(!SawReturned, "More than one parameter has attribute returned!", 2802 I); 2803 Assert(Ty->canLosslesslyBitCastTo(FTy->getReturnType()), 2804 "Incompatible argument and return types for 'returned' " 2805 "attribute", 2806 I); 2807 SawReturned = true; 2808 } 2809 2810 Assert(!ArgAttrs.hasAttribute(Attribute::StructRet), 2811 "Attribute 'sret' cannot be used for vararg call arguments!", I); 2812 2813 if (ArgAttrs.hasAttribute(Attribute::InAlloca)) 2814 Assert(Idx == CS.arg_size() - 1, "inalloca isn't on the last argument!", 2815 I); 2816 } 2817 } 2818 2819 // Verify that there's no metadata unless it's a direct call to an intrinsic. 2820 if (CS.getCalledFunction() == nullptr || 2821 !CS.getCalledFunction()->getName().startswith("llvm.")) { 2822 for (Type *ParamTy : FTy->params()) { 2823 Assert(!ParamTy->isMetadataTy(), 2824 "Function has metadata parameter but isn't an intrinsic", I); 2825 Assert(!ParamTy->isTokenTy(), 2826 "Function has token parameter but isn't an intrinsic", I); 2827 } 2828 } 2829 2830 // Verify that indirect calls don't return tokens. 2831 if (CS.getCalledFunction() == nullptr) 2832 Assert(!FTy->getReturnType()->isTokenTy(), 2833 "Return type cannot be token for indirect call!"); 2834 2835 if (Function *F = CS.getCalledFunction()) 2836 if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID()) 2837 visitIntrinsicCallSite(ID, CS); 2838 2839 // Verify that a callsite has at most one "deopt", at most one "funclet" and 2840 // at most one "gc-transition" operand bundle. 2841 bool FoundDeoptBundle = false, FoundFuncletBundle = false, 2842 FoundGCTransitionBundle = false; 2843 for (unsigned i = 0, e = CS.getNumOperandBundles(); i < e; ++i) { 2844 OperandBundleUse BU = CS.getOperandBundleAt(i); 2845 uint32_t Tag = BU.getTagID(); 2846 if (Tag == LLVMContext::OB_deopt) { 2847 Assert(!FoundDeoptBundle, "Multiple deopt operand bundles", I); 2848 FoundDeoptBundle = true; 2849 } else if (Tag == LLVMContext::OB_gc_transition) { 2850 Assert(!FoundGCTransitionBundle, "Multiple gc-transition operand bundles", 2851 I); 2852 FoundGCTransitionBundle = true; 2853 } else if (Tag == LLVMContext::OB_funclet) { 2854 Assert(!FoundFuncletBundle, "Multiple funclet operand bundles", I); 2855 FoundFuncletBundle = true; 2856 Assert(BU.Inputs.size() == 1, 2857 "Expected exactly one funclet bundle operand", I); 2858 Assert(isa<FuncletPadInst>(BU.Inputs.front()), 2859 "Funclet bundle operands should correspond to a FuncletPadInst", 2860 I); 2861 } 2862 } 2863 2864 // Verify that each inlinable callsite of a debug-info-bearing function in a 2865 // debug-info-bearing function has a debug location attached to it. Failure to 2866 // do so causes assertion failures when the inliner sets up inline scope info. 2867 if (I->getFunction()->getSubprogram() && CS.getCalledFunction() && 2868 CS.getCalledFunction()->getSubprogram()) 2869 AssertDI(I->getDebugLoc(), "inlinable function call in a function with " 2870 "debug info must have a !dbg location", 2871 I); 2872 2873 visitInstruction(*I); 2874 } 2875 2876 /// Two types are "congruent" if they are identical, or if they are both pointer 2877 /// types with different pointee types and the same address space. 2878 static bool isTypeCongruent(Type *L, Type *R) { 2879 if (L == R) 2880 return true; 2881 PointerType *PL = dyn_cast<PointerType>(L); 2882 PointerType *PR = dyn_cast<PointerType>(R); 2883 if (!PL || !PR) 2884 return false; 2885 return PL->getAddressSpace() == PR->getAddressSpace(); 2886 } 2887 2888 static AttrBuilder getParameterABIAttributes(int I, AttributeList Attrs) { 2889 static const Attribute::AttrKind ABIAttrs[] = { 2890 Attribute::StructRet, Attribute::ByVal, Attribute::InAlloca, 2891 Attribute::InReg, Attribute::Returned, Attribute::SwiftSelf, 2892 Attribute::SwiftError}; 2893 AttrBuilder Copy; 2894 for (auto AK : ABIAttrs) { 2895 if (Attrs.hasParamAttribute(I, AK)) 2896 Copy.addAttribute(AK); 2897 } 2898 if (Attrs.hasParamAttribute(I, Attribute::Alignment)) 2899 Copy.addAlignmentAttr(Attrs.getParamAlignment(I)); 2900 return Copy; 2901 } 2902 2903 void Verifier::verifyMustTailCall(CallInst &CI) { 2904 Assert(!CI.isInlineAsm(), "cannot use musttail call with inline asm", &CI); 2905 2906 // - The caller and callee prototypes must match. Pointer types of 2907 // parameters or return types may differ in pointee type, but not 2908 // address space. 2909 Function *F = CI.getParent()->getParent(); 2910 FunctionType *CallerTy = F->getFunctionType(); 2911 FunctionType *CalleeTy = CI.getFunctionType(); 2912 if (!CI.getCalledFunction() || !CI.getCalledFunction()->isIntrinsic()) { 2913 Assert(CallerTy->getNumParams() == CalleeTy->getNumParams(), 2914 "cannot guarantee tail call due to mismatched parameter counts", 2915 &CI); 2916 for (int I = 0, E = CallerTy->getNumParams(); I != E; ++I) { 2917 Assert( 2918 isTypeCongruent(CallerTy->getParamType(I), CalleeTy->getParamType(I)), 2919 "cannot guarantee tail call due to mismatched parameter types", &CI); 2920 } 2921 } 2922 Assert(CallerTy->isVarArg() == CalleeTy->isVarArg(), 2923 "cannot guarantee tail call due to mismatched varargs", &CI); 2924 Assert(isTypeCongruent(CallerTy->getReturnType(), CalleeTy->getReturnType()), 2925 "cannot guarantee tail call due to mismatched return types", &CI); 2926 2927 // - The calling conventions of the caller and callee must match. 2928 Assert(F->getCallingConv() == CI.getCallingConv(), 2929 "cannot guarantee tail call due to mismatched calling conv", &CI); 2930 2931 // - All ABI-impacting function attributes, such as sret, byval, inreg, 2932 // returned, and inalloca, must match. 2933 AttributeList CallerAttrs = F->getAttributes(); 2934 AttributeList CalleeAttrs = CI.getAttributes(); 2935 for (int I = 0, E = CallerTy->getNumParams(); I != E; ++I) { 2936 AttrBuilder CallerABIAttrs = getParameterABIAttributes(I, CallerAttrs); 2937 AttrBuilder CalleeABIAttrs = getParameterABIAttributes(I, CalleeAttrs); 2938 Assert(CallerABIAttrs == CalleeABIAttrs, 2939 "cannot guarantee tail call due to mismatched ABI impacting " 2940 "function attributes", 2941 &CI, CI.getOperand(I)); 2942 } 2943 2944 // - The call must immediately precede a :ref:`ret <i_ret>` instruction, 2945 // or a pointer bitcast followed by a ret instruction. 2946 // - The ret instruction must return the (possibly bitcasted) value 2947 // produced by the call or void. 2948 Value *RetVal = &CI; 2949 Instruction *Next = CI.getNextNode(); 2950 2951 // Handle the optional bitcast. 2952 if (BitCastInst *BI = dyn_cast_or_null<BitCastInst>(Next)) { 2953 Assert(BI->getOperand(0) == RetVal, 2954 "bitcast following musttail call must use the call", BI); 2955 RetVal = BI; 2956 Next = BI->getNextNode(); 2957 } 2958 2959 // Check the return. 2960 ReturnInst *Ret = dyn_cast_or_null<ReturnInst>(Next); 2961 Assert(Ret, "musttail call must precede a ret with an optional bitcast", 2962 &CI); 2963 Assert(!Ret->getReturnValue() || Ret->getReturnValue() == RetVal, 2964 "musttail call result must be returned", Ret); 2965 } 2966 2967 void Verifier::visitCallInst(CallInst &CI) { 2968 verifyCallSite(&CI); 2969 2970 if (CI.isMustTailCall()) 2971 verifyMustTailCall(CI); 2972 } 2973 2974 void Verifier::visitInvokeInst(InvokeInst &II) { 2975 verifyCallSite(&II); 2976 2977 // Verify that the first non-PHI instruction of the unwind destination is an 2978 // exception handling instruction. 2979 Assert( 2980 II.getUnwindDest()->isEHPad(), 2981 "The unwind destination does not have an exception handling instruction!", 2982 &II); 2983 2984 visitTerminatorInst(II); 2985 } 2986 2987 /// visitBinaryOperator - Check that both arguments to the binary operator are 2988 /// of the same type! 2989 /// 2990 void Verifier::visitBinaryOperator(BinaryOperator &B) { 2991 Assert(B.getOperand(0)->getType() == B.getOperand(1)->getType(), 2992 "Both operands to a binary operator are not of the same type!", &B); 2993 2994 switch (B.getOpcode()) { 2995 // Check that integer arithmetic operators are only used with 2996 // integral operands. 2997 case Instruction::Add: 2998 case Instruction::Sub: 2999 case Instruction::Mul: 3000 case Instruction::SDiv: 3001 case Instruction::UDiv: 3002 case Instruction::SRem: 3003 case Instruction::URem: 3004 Assert(B.getType()->isIntOrIntVectorTy(), 3005 "Integer arithmetic operators only work with integral types!", &B); 3006 Assert(B.getType() == B.getOperand(0)->getType(), 3007 "Integer arithmetic operators must have same type " 3008 "for operands and result!", 3009 &B); 3010 break; 3011 // Check that floating-point arithmetic operators are only used with 3012 // floating-point operands. 3013 case Instruction::FAdd: 3014 case Instruction::FSub: 3015 case Instruction::FMul: 3016 case Instruction::FDiv: 3017 case Instruction::FRem: 3018 Assert(B.getType()->isFPOrFPVectorTy(), 3019 "Floating-point arithmetic operators only work with " 3020 "floating-point types!", 3021 &B); 3022 Assert(B.getType() == B.getOperand(0)->getType(), 3023 "Floating-point arithmetic operators must have same type " 3024 "for operands and result!", 3025 &B); 3026 break; 3027 // Check that logical operators are only used with integral operands. 3028 case Instruction::And: 3029 case Instruction::Or: 3030 case Instruction::Xor: 3031 Assert(B.getType()->isIntOrIntVectorTy(), 3032 "Logical operators only work with integral types!", &B); 3033 Assert(B.getType() == B.getOperand(0)->getType(), 3034 "Logical operators must have same type for operands and result!", 3035 &B); 3036 break; 3037 case Instruction::Shl: 3038 case Instruction::LShr: 3039 case Instruction::AShr: 3040 Assert(B.getType()->isIntOrIntVectorTy(), 3041 "Shifts only work with integral types!", &B); 3042 Assert(B.getType() == B.getOperand(0)->getType(), 3043 "Shift return type must be same as operands!", &B); 3044 break; 3045 default: 3046 llvm_unreachable("Unknown BinaryOperator opcode!"); 3047 } 3048 3049 visitInstruction(B); 3050 } 3051 3052 void Verifier::visitICmpInst(ICmpInst &IC) { 3053 // Check that the operands are the same type 3054 Type *Op0Ty = IC.getOperand(0)->getType(); 3055 Type *Op1Ty = IC.getOperand(1)->getType(); 3056 Assert(Op0Ty == Op1Ty, 3057 "Both operands to ICmp instruction are not of the same type!", &IC); 3058 // Check that the operands are the right type 3059 Assert(Op0Ty->isIntOrIntVectorTy() || Op0Ty->isPtrOrPtrVectorTy(), 3060 "Invalid operand types for ICmp instruction", &IC); 3061 // Check that the predicate is valid. 3062 Assert(IC.isIntPredicate(), 3063 "Invalid predicate in ICmp instruction!", &IC); 3064 3065 visitInstruction(IC); 3066 } 3067 3068 void Verifier::visitFCmpInst(FCmpInst &FC) { 3069 // Check that the operands are the same type 3070 Type *Op0Ty = FC.getOperand(0)->getType(); 3071 Type *Op1Ty = FC.getOperand(1)->getType(); 3072 Assert(Op0Ty == Op1Ty, 3073 "Both operands to FCmp instruction are not of the same type!", &FC); 3074 // Check that the operands are the right type 3075 Assert(Op0Ty->isFPOrFPVectorTy(), 3076 "Invalid operand types for FCmp instruction", &FC); 3077 // Check that the predicate is valid. 3078 Assert(FC.isFPPredicate(), 3079 "Invalid predicate in FCmp instruction!", &FC); 3080 3081 visitInstruction(FC); 3082 } 3083 3084 void Verifier::visitExtractElementInst(ExtractElementInst &EI) { 3085 Assert( 3086 ExtractElementInst::isValidOperands(EI.getOperand(0), EI.getOperand(1)), 3087 "Invalid extractelement operands!", &EI); 3088 visitInstruction(EI); 3089 } 3090 3091 void Verifier::visitInsertElementInst(InsertElementInst &IE) { 3092 Assert(InsertElementInst::isValidOperands(IE.getOperand(0), IE.getOperand(1), 3093 IE.getOperand(2)), 3094 "Invalid insertelement operands!", &IE); 3095 visitInstruction(IE); 3096 } 3097 3098 void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) { 3099 Assert(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1), 3100 SV.getOperand(2)), 3101 "Invalid shufflevector operands!", &SV); 3102 visitInstruction(SV); 3103 } 3104 3105 void Verifier::visitGetElementPtrInst(GetElementPtrInst &GEP) { 3106 Type *TargetTy = GEP.getPointerOperandType()->getScalarType(); 3107 3108 Assert(isa<PointerType>(TargetTy), 3109 "GEP base pointer is not a vector or a vector of pointers", &GEP); 3110 Assert(GEP.getSourceElementType()->isSized(), "GEP into unsized type!", &GEP); 3111 3112 SmallVector<Value*, 16> Idxs(GEP.idx_begin(), GEP.idx_end()); 3113 Assert(all_of( 3114 Idxs, [](Value* V) { return V->getType()->isIntOrIntVectorTy(); }), 3115 "GEP indexes must be integers", &GEP); 3116 Type *ElTy = 3117 GetElementPtrInst::getIndexedType(GEP.getSourceElementType(), Idxs); 3118 Assert(ElTy, "Invalid indices for GEP pointer type!", &GEP); 3119 3120 Assert(GEP.getType()->isPtrOrPtrVectorTy() && 3121 GEP.getResultElementType() == ElTy, 3122 "GEP is not of right type for indices!", &GEP, ElTy); 3123 3124 if (GEP.getType()->isVectorTy()) { 3125 // Additional checks for vector GEPs. 3126 unsigned GEPWidth = GEP.getType()->getVectorNumElements(); 3127 if (GEP.getPointerOperandType()->isVectorTy()) 3128 Assert(GEPWidth == GEP.getPointerOperandType()->getVectorNumElements(), 3129 "Vector GEP result width doesn't match operand's", &GEP); 3130 for (Value *Idx : Idxs) { 3131 Type *IndexTy = Idx->getType(); 3132 if (IndexTy->isVectorTy()) { 3133 unsigned IndexWidth = IndexTy->getVectorNumElements(); 3134 Assert(IndexWidth == GEPWidth, "Invalid GEP index vector width", &GEP); 3135 } 3136 Assert(IndexTy->isIntOrIntVectorTy(), 3137 "All GEP indices should be of integer type"); 3138 } 3139 } 3140 visitInstruction(GEP); 3141 } 3142 3143 static bool isContiguous(const ConstantRange &A, const ConstantRange &B) { 3144 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); 3145 } 3146 3147 void Verifier::visitRangeMetadata(Instruction &I, MDNode *Range, Type *Ty) { 3148 assert(Range && Range == I.getMetadata(LLVMContext::MD_range) && 3149 "precondition violation"); 3150 3151 unsigned NumOperands = Range->getNumOperands(); 3152 Assert(NumOperands % 2 == 0, "Unfinished range!", Range); 3153 unsigned NumRanges = NumOperands / 2; 3154 Assert(NumRanges >= 1, "It should have at least one range!", Range); 3155 3156 ConstantRange LastRange(1); // Dummy initial value 3157 for (unsigned i = 0; i < NumRanges; ++i) { 3158 ConstantInt *Low = 3159 mdconst::dyn_extract<ConstantInt>(Range->getOperand(2 * i)); 3160 Assert(Low, "The lower limit must be an integer!", Low); 3161 ConstantInt *High = 3162 mdconst::dyn_extract<ConstantInt>(Range->getOperand(2 * i + 1)); 3163 Assert(High, "The upper limit must be an integer!", High); 3164 Assert(High->getType() == Low->getType() && High->getType() == Ty, 3165 "Range types must match instruction type!", &I); 3166 3167 APInt HighV = High->getValue(); 3168 APInt LowV = Low->getValue(); 3169 ConstantRange CurRange(LowV, HighV); 3170 Assert(!CurRange.isEmptySet() && !CurRange.isFullSet(), 3171 "Range must not be empty!", Range); 3172 if (i != 0) { 3173 Assert(CurRange.intersectWith(LastRange).isEmptySet(), 3174 "Intervals are overlapping", Range); 3175 Assert(LowV.sgt(LastRange.getLower()), "Intervals are not in order", 3176 Range); 3177 Assert(!isContiguous(CurRange, LastRange), "Intervals are contiguous", 3178 Range); 3179 } 3180 LastRange = ConstantRange(LowV, HighV); 3181 } 3182 if (NumRanges > 2) { 3183 APInt FirstLow = 3184 mdconst::dyn_extract<ConstantInt>(Range->getOperand(0))->getValue(); 3185 APInt FirstHigh = 3186 mdconst::dyn_extract<ConstantInt>(Range->getOperand(1))->getValue(); 3187 ConstantRange FirstRange(FirstLow, FirstHigh); 3188 Assert(FirstRange.intersectWith(LastRange).isEmptySet(), 3189 "Intervals are overlapping", Range); 3190 Assert(!isContiguous(FirstRange, LastRange), "Intervals are contiguous", 3191 Range); 3192 } 3193 } 3194 3195 void Verifier::checkAtomicMemAccessSize(Type *Ty, const Instruction *I) { 3196 unsigned Size = DL.getTypeSizeInBits(Ty); 3197 Assert(Size >= 8, "atomic memory access' size must be byte-sized", Ty, I); 3198 Assert(!(Size & (Size - 1)), 3199 "atomic memory access' operand must have a power-of-two size", Ty, I); 3200 } 3201 3202 void Verifier::visitLoadInst(LoadInst &LI) { 3203 PointerType *PTy = dyn_cast<PointerType>(LI.getOperand(0)->getType()); 3204 Assert(PTy, "Load operand must be a pointer.", &LI); 3205 Type *ElTy = LI.getType(); 3206 Assert(LI.getAlignment() <= Value::MaximumAlignment, 3207 "huge alignment values are unsupported", &LI); 3208 Assert(ElTy->isSized(), "loading unsized types is not allowed", &LI); 3209 if (LI.isAtomic()) { 3210 Assert(LI.getOrdering() != AtomicOrdering::Release && 3211 LI.getOrdering() != AtomicOrdering::AcquireRelease, 3212 "Load cannot have Release ordering", &LI); 3213 Assert(LI.getAlignment() != 0, 3214 "Atomic load must specify explicit alignment", &LI); 3215 Assert(ElTy->isIntOrPtrTy() || ElTy->isFloatingPointTy(), 3216 "atomic load operand must have integer, pointer, or floating point " 3217 "type!", 3218 ElTy, &LI); 3219 checkAtomicMemAccessSize(ElTy, &LI); 3220 } else { 3221 Assert(LI.getSyncScopeID() == SyncScope::System, 3222 "Non-atomic load cannot have SynchronizationScope specified", &LI); 3223 } 3224 3225 visitInstruction(LI); 3226 } 3227 3228 void Verifier::visitStoreInst(StoreInst &SI) { 3229 PointerType *PTy = dyn_cast<PointerType>(SI.getOperand(1)->getType()); 3230 Assert(PTy, "Store operand must be a pointer.", &SI); 3231 Type *ElTy = PTy->getElementType(); 3232 Assert(ElTy == SI.getOperand(0)->getType(), 3233 "Stored value type does not match pointer operand type!", &SI, ElTy); 3234 Assert(SI.getAlignment() <= Value::MaximumAlignment, 3235 "huge alignment values are unsupported", &SI); 3236 Assert(ElTy->isSized(), "storing unsized types is not allowed", &SI); 3237 if (SI.isAtomic()) { 3238 Assert(SI.getOrdering() != AtomicOrdering::Acquire && 3239 SI.getOrdering() != AtomicOrdering::AcquireRelease, 3240 "Store cannot have Acquire ordering", &SI); 3241 Assert(SI.getAlignment() != 0, 3242 "Atomic store must specify explicit alignment", &SI); 3243 Assert(ElTy->isIntOrPtrTy() || ElTy->isFloatingPointTy(), 3244 "atomic store operand must have integer, pointer, or floating point " 3245 "type!", 3246 ElTy, &SI); 3247 checkAtomicMemAccessSize(ElTy, &SI); 3248 } else { 3249 Assert(SI.getSyncScopeID() == SyncScope::System, 3250 "Non-atomic store cannot have SynchronizationScope specified", &SI); 3251 } 3252 visitInstruction(SI); 3253 } 3254 3255 /// Check that SwiftErrorVal is used as a swifterror argument in CS. 3256 void Verifier::verifySwiftErrorCallSite(CallSite CS, 3257 const Value *SwiftErrorVal) { 3258 unsigned Idx = 0; 3259 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end(); 3260 I != E; ++I, ++Idx) { 3261 if (*I == SwiftErrorVal) { 3262 Assert(CS.paramHasAttr(Idx, Attribute::SwiftError), 3263 "swifterror value when used in a callsite should be marked " 3264 "with swifterror attribute", 3265 SwiftErrorVal, CS); 3266 } 3267 } 3268 } 3269 3270 void Verifier::verifySwiftErrorValue(const Value *SwiftErrorVal) { 3271 // Check that swifterror value is only used by loads, stores, or as 3272 // a swifterror argument. 3273 for (const User *U : SwiftErrorVal->users()) { 3274 Assert(isa<LoadInst>(U) || isa<StoreInst>(U) || isa<CallInst>(U) || 3275 isa<InvokeInst>(U), 3276 "swifterror value can only be loaded and stored from, or " 3277 "as a swifterror argument!", 3278 SwiftErrorVal, U); 3279 // If it is used by a store, check it is the second operand. 3280 if (auto StoreI = dyn_cast<StoreInst>(U)) 3281 Assert(StoreI->getOperand(1) == SwiftErrorVal, 3282 "swifterror value should be the second operand when used " 3283 "by stores", SwiftErrorVal, U); 3284 if (auto CallI = dyn_cast<CallInst>(U)) 3285 verifySwiftErrorCallSite(const_cast<CallInst*>(CallI), SwiftErrorVal); 3286 if (auto II = dyn_cast<InvokeInst>(U)) 3287 verifySwiftErrorCallSite(const_cast<InvokeInst*>(II), SwiftErrorVal); 3288 } 3289 } 3290 3291 void Verifier::visitAllocaInst(AllocaInst &AI) { 3292 SmallPtrSet<Type*, 4> Visited; 3293 PointerType *PTy = AI.getType(); 3294 // TODO: Relax this restriction? 3295 Assert(PTy->getAddressSpace() == DL.getAllocaAddrSpace(), 3296 "Allocation instruction pointer not in the stack address space!", 3297 &AI); 3298 Assert(AI.getAllocatedType()->isSized(&Visited), 3299 "Cannot allocate unsized type", &AI); 3300 Assert(AI.getArraySize()->getType()->isIntegerTy(), 3301 "Alloca array size must have integer type", &AI); 3302 Assert(AI.getAlignment() <= Value::MaximumAlignment, 3303 "huge alignment values are unsupported", &AI); 3304 3305 if (AI.isSwiftError()) { 3306 verifySwiftErrorValue(&AI); 3307 } 3308 3309 visitInstruction(AI); 3310 } 3311 3312 void Verifier::visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI) { 3313 3314 // FIXME: more conditions??? 3315 Assert(CXI.getSuccessOrdering() != AtomicOrdering::NotAtomic, 3316 "cmpxchg instructions must be atomic.", &CXI); 3317 Assert(CXI.getFailureOrdering() != AtomicOrdering::NotAtomic, 3318 "cmpxchg instructions must be atomic.", &CXI); 3319 Assert(CXI.getSuccessOrdering() != AtomicOrdering::Unordered, 3320 "cmpxchg instructions cannot be unordered.", &CXI); 3321 Assert(CXI.getFailureOrdering() != AtomicOrdering::Unordered, 3322 "cmpxchg instructions cannot be unordered.", &CXI); 3323 Assert(!isStrongerThan(CXI.getFailureOrdering(), CXI.getSuccessOrdering()), 3324 "cmpxchg instructions failure argument shall be no stronger than the " 3325 "success argument", 3326 &CXI); 3327 Assert(CXI.getFailureOrdering() != AtomicOrdering::Release && 3328 CXI.getFailureOrdering() != AtomicOrdering::AcquireRelease, 3329 "cmpxchg failure ordering cannot include release semantics", &CXI); 3330 3331 PointerType *PTy = dyn_cast<PointerType>(CXI.getOperand(0)->getType()); 3332 Assert(PTy, "First cmpxchg operand must be a pointer.", &CXI); 3333 Type *ElTy = PTy->getElementType(); 3334 Assert(ElTy->isIntOrPtrTy(), 3335 "cmpxchg operand must have integer or pointer type", ElTy, &CXI); 3336 checkAtomicMemAccessSize(ElTy, &CXI); 3337 Assert(ElTy == CXI.getOperand(1)->getType(), 3338 "Expected value type does not match pointer operand type!", &CXI, 3339 ElTy); 3340 Assert(ElTy == CXI.getOperand(2)->getType(), 3341 "Stored value type does not match pointer operand type!", &CXI, ElTy); 3342 visitInstruction(CXI); 3343 } 3344 3345 void Verifier::visitAtomicRMWInst(AtomicRMWInst &RMWI) { 3346 Assert(RMWI.getOrdering() != AtomicOrdering::NotAtomic, 3347 "atomicrmw instructions must be atomic.", &RMWI); 3348 Assert(RMWI.getOrdering() != AtomicOrdering::Unordered, 3349 "atomicrmw instructions cannot be unordered.", &RMWI); 3350 PointerType *PTy = dyn_cast<PointerType>(RMWI.getOperand(0)->getType()); 3351 Assert(PTy, "First atomicrmw operand must be a pointer.", &RMWI); 3352 Type *ElTy = PTy->getElementType(); 3353 Assert(ElTy->isIntegerTy(), "atomicrmw operand must have integer type!", 3354 &RMWI, ElTy); 3355 checkAtomicMemAccessSize(ElTy, &RMWI); 3356 Assert(ElTy == RMWI.getOperand(1)->getType(), 3357 "Argument value type does not match pointer operand type!", &RMWI, 3358 ElTy); 3359 Assert(AtomicRMWInst::FIRST_BINOP <= RMWI.getOperation() && 3360 RMWI.getOperation() <= AtomicRMWInst::LAST_BINOP, 3361 "Invalid binary operation!", &RMWI); 3362 visitInstruction(RMWI); 3363 } 3364 3365 void Verifier::visitFenceInst(FenceInst &FI) { 3366 const AtomicOrdering Ordering = FI.getOrdering(); 3367 Assert(Ordering == AtomicOrdering::Acquire || 3368 Ordering == AtomicOrdering::Release || 3369 Ordering == AtomicOrdering::AcquireRelease || 3370 Ordering == AtomicOrdering::SequentiallyConsistent, 3371 "fence instructions may only have acquire, release, acq_rel, or " 3372 "seq_cst ordering.", 3373 &FI); 3374 visitInstruction(FI); 3375 } 3376 3377 void Verifier::visitExtractValueInst(ExtractValueInst &EVI) { 3378 Assert(ExtractValueInst::getIndexedType(EVI.getAggregateOperand()->getType(), 3379 EVI.getIndices()) == EVI.getType(), 3380 "Invalid ExtractValueInst operands!", &EVI); 3381 3382 visitInstruction(EVI); 3383 } 3384 3385 void Verifier::visitInsertValueInst(InsertValueInst &IVI) { 3386 Assert(ExtractValueInst::getIndexedType(IVI.getAggregateOperand()->getType(), 3387 IVI.getIndices()) == 3388 IVI.getOperand(1)->getType(), 3389 "Invalid InsertValueInst operands!", &IVI); 3390 3391 visitInstruction(IVI); 3392 } 3393 3394 static Value *getParentPad(Value *EHPad) { 3395 if (auto *FPI = dyn_cast<FuncletPadInst>(EHPad)) 3396 return FPI->getParentPad(); 3397 3398 return cast<CatchSwitchInst>(EHPad)->getParentPad(); 3399 } 3400 3401 void Verifier::visitEHPadPredecessors(Instruction &I) { 3402 assert(I.isEHPad()); 3403 3404 BasicBlock *BB = I.getParent(); 3405 Function *F = BB->getParent(); 3406 3407 Assert(BB != &F->getEntryBlock(), "EH pad cannot be in entry block.", &I); 3408 3409 if (auto *LPI = dyn_cast<LandingPadInst>(&I)) { 3410 // The landingpad instruction defines its parent as a landing pad block. The 3411 // landing pad block may be branched to only by the unwind edge of an 3412 // invoke. 3413 for (BasicBlock *PredBB : predecessors(BB)) { 3414 const auto *II = dyn_cast<InvokeInst>(PredBB->getTerminator()); 3415 Assert(II && II->getUnwindDest() == BB && II->getNormalDest() != BB, 3416 "Block containing LandingPadInst must be jumped to " 3417 "only by the unwind edge of an invoke.", 3418 LPI); 3419 } 3420 return; 3421 } 3422 if (auto *CPI = dyn_cast<CatchPadInst>(&I)) { 3423 if (!pred_empty(BB)) 3424 Assert(BB->getUniquePredecessor() == CPI->getCatchSwitch()->getParent(), 3425 "Block containg CatchPadInst must be jumped to " 3426 "only by its catchswitch.", 3427 CPI); 3428 Assert(BB != CPI->getCatchSwitch()->getUnwindDest(), 3429 "Catchswitch cannot unwind to one of its catchpads", 3430 CPI->getCatchSwitch(), CPI); 3431 return; 3432 } 3433 3434 // Verify that each pred has a legal terminator with a legal to/from EH 3435 // pad relationship. 3436 Instruction *ToPad = &I; 3437 Value *ToPadParent = getParentPad(ToPad); 3438 for (BasicBlock *PredBB : predecessors(BB)) { 3439 TerminatorInst *TI = PredBB->getTerminator(); 3440 Value *FromPad; 3441 if (auto *II = dyn_cast<InvokeInst>(TI)) { 3442 Assert(II->getUnwindDest() == BB && II->getNormalDest() != BB, 3443 "EH pad must be jumped to via an unwind edge", ToPad, II); 3444 if (auto Bundle = II->getOperandBundle(LLVMContext::OB_funclet)) 3445 FromPad = Bundle->Inputs[0]; 3446 else 3447 FromPad = ConstantTokenNone::get(II->getContext()); 3448 } else if (auto *CRI = dyn_cast<CleanupReturnInst>(TI)) { 3449 FromPad = CRI->getOperand(0); 3450 Assert(FromPad != ToPadParent, "A cleanupret must exit its cleanup", CRI); 3451 } else if (auto *CSI = dyn_cast<CatchSwitchInst>(TI)) { 3452 FromPad = CSI; 3453 } else { 3454 Assert(false, "EH pad must be jumped to via an unwind edge", ToPad, TI); 3455 } 3456 3457 // The edge may exit from zero or more nested pads. 3458 SmallSet<Value *, 8> Seen; 3459 for (;; FromPad = getParentPad(FromPad)) { 3460 Assert(FromPad != ToPad, 3461 "EH pad cannot handle exceptions raised within it", FromPad, TI); 3462 if (FromPad == ToPadParent) { 3463 // This is a legal unwind edge. 3464 break; 3465 } 3466 Assert(!isa<ConstantTokenNone>(FromPad), 3467 "A single unwind edge may only enter one EH pad", TI); 3468 Assert(Seen.insert(FromPad).second, 3469 "EH pad jumps through a cycle of pads", FromPad); 3470 } 3471 } 3472 } 3473 3474 void Verifier::visitLandingPadInst(LandingPadInst &LPI) { 3475 // The landingpad instruction is ill-formed if it doesn't have any clauses and 3476 // isn't a cleanup. 3477 Assert(LPI.getNumClauses() > 0 || LPI.isCleanup(), 3478 "LandingPadInst needs at least one clause or to be a cleanup.", &LPI); 3479 3480 visitEHPadPredecessors(LPI); 3481 3482 if (!LandingPadResultTy) 3483 LandingPadResultTy = LPI.getType(); 3484 else 3485 Assert(LandingPadResultTy == LPI.getType(), 3486 "The landingpad instruction should have a consistent result type " 3487 "inside a function.", 3488 &LPI); 3489 3490 Function *F = LPI.getParent()->getParent(); 3491 Assert(F->hasPersonalityFn(), 3492 "LandingPadInst needs to be in a function with a personality.", &LPI); 3493 3494 // The landingpad instruction must be the first non-PHI instruction in the 3495 // block. 3496 Assert(LPI.getParent()->getLandingPadInst() == &LPI, 3497 "LandingPadInst not the first non-PHI instruction in the block.", 3498 &LPI); 3499 3500 for (unsigned i = 0, e = LPI.getNumClauses(); i < e; ++i) { 3501 Constant *Clause = LPI.getClause(i); 3502 if (LPI.isCatch(i)) { 3503 Assert(isa<PointerType>(Clause->getType()), 3504 "Catch operand does not have pointer type!", &LPI); 3505 } else { 3506 Assert(LPI.isFilter(i), "Clause is neither catch nor filter!", &LPI); 3507 Assert(isa<ConstantArray>(Clause) || isa<ConstantAggregateZero>(Clause), 3508 "Filter operand is not an array of constants!", &LPI); 3509 } 3510 } 3511 3512 visitInstruction(LPI); 3513 } 3514 3515 void Verifier::visitResumeInst(ResumeInst &RI) { 3516 Assert(RI.getFunction()->hasPersonalityFn(), 3517 "ResumeInst needs to be in a function with a personality.", &RI); 3518 3519 if (!LandingPadResultTy) 3520 LandingPadResultTy = RI.getValue()->getType(); 3521 else 3522 Assert(LandingPadResultTy == RI.getValue()->getType(), 3523 "The resume instruction should have a consistent result type " 3524 "inside a function.", 3525 &RI); 3526 3527 visitTerminatorInst(RI); 3528 } 3529 3530 void Verifier::visitCatchPadInst(CatchPadInst &CPI) { 3531 BasicBlock *BB = CPI.getParent(); 3532 3533 Function *F = BB->getParent(); 3534 Assert(F->hasPersonalityFn(), 3535 "CatchPadInst needs to be in a function with a personality.", &CPI); 3536 3537 Assert(isa<CatchSwitchInst>(CPI.getParentPad()), 3538 "CatchPadInst needs to be directly nested in a CatchSwitchInst.", 3539 CPI.getParentPad()); 3540 3541 // The catchpad instruction must be the first non-PHI instruction in the 3542 // block. 3543 Assert(BB->getFirstNonPHI() == &CPI, 3544 "CatchPadInst not the first non-PHI instruction in the block.", &CPI); 3545 3546 visitEHPadPredecessors(CPI); 3547 visitFuncletPadInst(CPI); 3548 } 3549 3550 void Verifier::visitCatchReturnInst(CatchReturnInst &CatchReturn) { 3551 Assert(isa<CatchPadInst>(CatchReturn.getOperand(0)), 3552 "CatchReturnInst needs to be provided a CatchPad", &CatchReturn, 3553 CatchReturn.getOperand(0)); 3554 3555 visitTerminatorInst(CatchReturn); 3556 } 3557 3558 void Verifier::visitCleanupPadInst(CleanupPadInst &CPI) { 3559 BasicBlock *BB = CPI.getParent(); 3560 3561 Function *F = BB->getParent(); 3562 Assert(F->hasPersonalityFn(), 3563 "CleanupPadInst needs to be in a function with a personality.", &CPI); 3564 3565 // The cleanuppad instruction must be the first non-PHI instruction in the 3566 // block. 3567 Assert(BB->getFirstNonPHI() == &CPI, 3568 "CleanupPadInst not the first non-PHI instruction in the block.", 3569 &CPI); 3570 3571 auto *ParentPad = CPI.getParentPad(); 3572 Assert(isa<ConstantTokenNone>(ParentPad) || isa<FuncletPadInst>(ParentPad), 3573 "CleanupPadInst has an invalid parent.", &CPI); 3574 3575 visitEHPadPredecessors(CPI); 3576 visitFuncletPadInst(CPI); 3577 } 3578 3579 void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) { 3580 User *FirstUser = nullptr; 3581 Value *FirstUnwindPad = nullptr; 3582 SmallVector<FuncletPadInst *, 8> Worklist({&FPI}); 3583 SmallSet<FuncletPadInst *, 8> Seen; 3584 3585 while (!Worklist.empty()) { 3586 FuncletPadInst *CurrentPad = Worklist.pop_back_val(); 3587 Assert(Seen.insert(CurrentPad).second, 3588 "FuncletPadInst must not be nested within itself", CurrentPad); 3589 Value *UnresolvedAncestorPad = nullptr; 3590 for (User *U : CurrentPad->users()) { 3591 BasicBlock *UnwindDest; 3592 if (auto *CRI = dyn_cast<CleanupReturnInst>(U)) { 3593 UnwindDest = CRI->getUnwindDest(); 3594 } else if (auto *CSI = dyn_cast<CatchSwitchInst>(U)) { 3595 // We allow catchswitch unwind to caller to nest 3596 // within an outer pad that unwinds somewhere else, 3597 // because catchswitch doesn't have a nounwind variant. 3598 // See e.g. SimplifyCFGOpt::SimplifyUnreachable. 3599 if (CSI->unwindsToCaller()) 3600 continue; 3601 UnwindDest = CSI->getUnwindDest(); 3602 } else if (auto *II = dyn_cast<InvokeInst>(U)) { 3603 UnwindDest = II->getUnwindDest(); 3604 } else if (isa<CallInst>(U)) { 3605 // Calls which don't unwind may be found inside funclet 3606 // pads that unwind somewhere else. We don't *require* 3607 // such calls to be annotated nounwind. 3608 continue; 3609 } else if (auto *CPI = dyn_cast<CleanupPadInst>(U)) { 3610 // The unwind dest for a cleanup can only be found by 3611 // recursive search. Add it to the worklist, and we'll 3612 // search for its first use that determines where it unwinds. 3613 Worklist.push_back(CPI); 3614 continue; 3615 } else { 3616 Assert(isa<CatchReturnInst>(U), "Bogus funclet pad use", U); 3617 continue; 3618 } 3619 3620 Value *UnwindPad; 3621 bool ExitsFPI; 3622 if (UnwindDest) { 3623 UnwindPad = UnwindDest->getFirstNonPHI(); 3624 if (!cast<Instruction>(UnwindPad)->isEHPad()) 3625 continue; 3626 Value *UnwindParent = getParentPad(UnwindPad); 3627 // Ignore unwind edges that don't exit CurrentPad. 3628 if (UnwindParent == CurrentPad) 3629 continue; 3630 // Determine whether the original funclet pad is exited, 3631 // and if we are scanning nested pads determine how many 3632 // of them are exited so we can stop searching their 3633 // children. 3634 Value *ExitedPad = CurrentPad; 3635 ExitsFPI = false; 3636 do { 3637 if (ExitedPad == &FPI) { 3638 ExitsFPI = true; 3639 // Now we can resolve any ancestors of CurrentPad up to 3640 // FPI, but not including FPI since we need to make sure 3641 // to check all direct users of FPI for consistency. 3642 UnresolvedAncestorPad = &FPI; 3643 break; 3644 } 3645 Value *ExitedParent = getParentPad(ExitedPad); 3646 if (ExitedParent == UnwindParent) { 3647 // ExitedPad is the ancestor-most pad which this unwind 3648 // edge exits, so we can resolve up to it, meaning that 3649 // ExitedParent is the first ancestor still unresolved. 3650 UnresolvedAncestorPad = ExitedParent; 3651 break; 3652 } 3653 ExitedPad = ExitedParent; 3654 } while (!isa<ConstantTokenNone>(ExitedPad)); 3655 } else { 3656 // Unwinding to caller exits all pads. 3657 UnwindPad = ConstantTokenNone::get(FPI.getContext()); 3658 ExitsFPI = true; 3659 UnresolvedAncestorPad = &FPI; 3660 } 3661 3662 if (ExitsFPI) { 3663 // This unwind edge exits FPI. Make sure it agrees with other 3664 // such edges. 3665 if (FirstUser) { 3666 Assert(UnwindPad == FirstUnwindPad, "Unwind edges out of a funclet " 3667 "pad must have the same unwind " 3668 "dest", 3669 &FPI, U, FirstUser); 3670 } else { 3671 FirstUser = U; 3672 FirstUnwindPad = UnwindPad; 3673 // Record cleanup sibling unwinds for verifySiblingFuncletUnwinds 3674 if (isa<CleanupPadInst>(&FPI) && !isa<ConstantTokenNone>(UnwindPad) && 3675 getParentPad(UnwindPad) == getParentPad(&FPI)) 3676 SiblingFuncletInfo[&FPI] = cast<TerminatorInst>(U); 3677 } 3678 } 3679 // Make sure we visit all uses of FPI, but for nested pads stop as 3680 // soon as we know where they unwind to. 3681 if (CurrentPad != &FPI) 3682 break; 3683 } 3684 if (UnresolvedAncestorPad) { 3685 if (CurrentPad == UnresolvedAncestorPad) { 3686 // When CurrentPad is FPI itself, we don't mark it as resolved even if 3687 // we've found an unwind edge that exits it, because we need to verify 3688 // all direct uses of FPI. 3689 assert(CurrentPad == &FPI); 3690 continue; 3691 } 3692 // Pop off the worklist any nested pads that we've found an unwind 3693 // destination for. The pads on the worklist are the uncles, 3694 // great-uncles, etc. of CurrentPad. We've found an unwind destination 3695 // for all ancestors of CurrentPad up to but not including 3696 // UnresolvedAncestorPad. 3697 Value *ResolvedPad = CurrentPad; 3698 while (!Worklist.empty()) { 3699 Value *UnclePad = Worklist.back(); 3700 Value *AncestorPad = getParentPad(UnclePad); 3701 // Walk ResolvedPad up the ancestor list until we either find the 3702 // uncle's parent or the last resolved ancestor. 3703 while (ResolvedPad != AncestorPad) { 3704 Value *ResolvedParent = getParentPad(ResolvedPad); 3705 if (ResolvedParent == UnresolvedAncestorPad) { 3706 break; 3707 } 3708 ResolvedPad = ResolvedParent; 3709 } 3710 // If the resolved ancestor search didn't find the uncle's parent, 3711 // then the uncle is not yet resolved. 3712 if (ResolvedPad != AncestorPad) 3713 break; 3714 // This uncle is resolved, so pop it from the worklist. 3715 Worklist.pop_back(); 3716 } 3717 } 3718 } 3719 3720 if (FirstUnwindPad) { 3721 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(FPI.getParentPad())) { 3722 BasicBlock *SwitchUnwindDest = CatchSwitch->getUnwindDest(); 3723 Value *SwitchUnwindPad; 3724 if (SwitchUnwindDest) 3725 SwitchUnwindPad = SwitchUnwindDest->getFirstNonPHI(); 3726 else 3727 SwitchUnwindPad = ConstantTokenNone::get(FPI.getContext()); 3728 Assert(SwitchUnwindPad == FirstUnwindPad, 3729 "Unwind edges out of a catch must have the same unwind dest as " 3730 "the parent catchswitch", 3731 &FPI, FirstUser, CatchSwitch); 3732 } 3733 } 3734 3735 visitInstruction(FPI); 3736 } 3737 3738 void Verifier::visitCatchSwitchInst(CatchSwitchInst &CatchSwitch) { 3739 BasicBlock *BB = CatchSwitch.getParent(); 3740 3741 Function *F = BB->getParent(); 3742 Assert(F->hasPersonalityFn(), 3743 "CatchSwitchInst needs to be in a function with a personality.", 3744 &CatchSwitch); 3745 3746 // The catchswitch instruction must be the first non-PHI instruction in the 3747 // block. 3748 Assert(BB->getFirstNonPHI() == &CatchSwitch, 3749 "CatchSwitchInst not the first non-PHI instruction in the block.", 3750 &CatchSwitch); 3751 3752 auto *ParentPad = CatchSwitch.getParentPad(); 3753 Assert(isa<ConstantTokenNone>(ParentPad) || isa<FuncletPadInst>(ParentPad), 3754 "CatchSwitchInst has an invalid parent.", ParentPad); 3755 3756 if (BasicBlock *UnwindDest = CatchSwitch.getUnwindDest()) { 3757 Instruction *I = UnwindDest->getFirstNonPHI(); 3758 Assert(I->isEHPad() && !isa<LandingPadInst>(I), 3759 "CatchSwitchInst must unwind to an EH block which is not a " 3760 "landingpad.", 3761 &CatchSwitch); 3762 3763 // Record catchswitch sibling unwinds for verifySiblingFuncletUnwinds 3764 if (getParentPad(I) == ParentPad) 3765 SiblingFuncletInfo[&CatchSwitch] = &CatchSwitch; 3766 } 3767 3768 Assert(CatchSwitch.getNumHandlers() != 0, 3769 "CatchSwitchInst cannot have empty handler list", &CatchSwitch); 3770 3771 for (BasicBlock *Handler : CatchSwitch.handlers()) { 3772 Assert(isa<CatchPadInst>(Handler->getFirstNonPHI()), 3773 "CatchSwitchInst handlers must be catchpads", &CatchSwitch, Handler); 3774 } 3775 3776 visitEHPadPredecessors(CatchSwitch); 3777 visitTerminatorInst(CatchSwitch); 3778 } 3779 3780 void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) { 3781 Assert(isa<CleanupPadInst>(CRI.getOperand(0)), 3782 "CleanupReturnInst needs to be provided a CleanupPad", &CRI, 3783 CRI.getOperand(0)); 3784 3785 if (BasicBlock *UnwindDest = CRI.getUnwindDest()) { 3786 Instruction *I = UnwindDest->getFirstNonPHI(); 3787 Assert(I->isEHPad() && !isa<LandingPadInst>(I), 3788 "CleanupReturnInst must unwind to an EH block which is not a " 3789 "landingpad.", 3790 &CRI); 3791 } 3792 3793 visitTerminatorInst(CRI); 3794 } 3795 3796 void Verifier::verifyDominatesUse(Instruction &I, unsigned i) { 3797 Instruction *Op = cast<Instruction>(I.getOperand(i)); 3798 // If the we have an invalid invoke, don't try to compute the dominance. 3799 // We already reject it in the invoke specific checks and the dominance 3800 // computation doesn't handle multiple edges. 3801 if (InvokeInst *II = dyn_cast<InvokeInst>(Op)) { 3802 if (II->getNormalDest() == II->getUnwindDest()) 3803 return; 3804 } 3805 3806 // Quick check whether the def has already been encountered in the same block. 3807 // PHI nodes are not checked to prevent accepting preceeding PHIs, because PHI 3808 // uses are defined to happen on the incoming edge, not at the instruction. 3809 // 3810 // FIXME: If this operand is a MetadataAsValue (wrapping a LocalAsMetadata) 3811 // wrapping an SSA value, assert that we've already encountered it. See 3812 // related FIXME in Mapper::mapLocalAsMetadata in ValueMapper.cpp. 3813 if (!isa<PHINode>(I) && InstsInThisBlock.count(Op)) 3814 return; 3815 3816 const Use &U = I.getOperandUse(i); 3817 Assert(DT.dominates(Op, U), 3818 "Instruction does not dominate all uses!", Op, &I); 3819 } 3820 3821 void Verifier::visitDereferenceableMetadata(Instruction& I, MDNode* MD) { 3822 Assert(I.getType()->isPointerTy(), "dereferenceable, dereferenceable_or_null " 3823 "apply only to pointer types", &I); 3824 Assert(isa<LoadInst>(I), 3825 "dereferenceable, dereferenceable_or_null apply only to load" 3826 " instructions, use attributes for calls or invokes", &I); 3827 Assert(MD->getNumOperands() == 1, "dereferenceable, dereferenceable_or_null " 3828 "take one operand!", &I); 3829 ConstantInt *CI = mdconst::dyn_extract<ConstantInt>(MD->getOperand(0)); 3830 Assert(CI && CI->getType()->isIntegerTy(64), "dereferenceable, " 3831 "dereferenceable_or_null metadata value must be an i64!", &I); 3832 } 3833 3834 /// verifyInstruction - Verify that an instruction is well formed. 3835 /// 3836 void Verifier::visitInstruction(Instruction &I) { 3837 BasicBlock *BB = I.getParent(); 3838 Assert(BB, "Instruction not embedded in basic block!", &I); 3839 3840 if (!isa<PHINode>(I)) { // Check that non-phi nodes are not self referential 3841 for (User *U : I.users()) { 3842 Assert(U != (User *)&I || !DT.isReachableFromEntry(BB), 3843 "Only PHI nodes may reference their own value!", &I); 3844 } 3845 } 3846 3847 // Check that void typed values don't have names 3848 Assert(!I.getType()->isVoidTy() || !I.hasName(), 3849 "Instruction has a name, but provides a void value!", &I); 3850 3851 // Check that the return value of the instruction is either void or a legal 3852 // value type. 3853 Assert(I.getType()->isVoidTy() || I.getType()->isFirstClassType(), 3854 "Instruction returns a non-scalar type!", &I); 3855 3856 // Check that the instruction doesn't produce metadata. Calls are already 3857 // checked against the callee type. 3858 Assert(!I.getType()->isMetadataTy() || isa<CallInst>(I) || isa<InvokeInst>(I), 3859 "Invalid use of metadata!", &I); 3860 3861 // Check that all uses of the instruction, if they are instructions 3862 // themselves, actually have parent basic blocks. If the use is not an 3863 // instruction, it is an error! 3864 for (Use &U : I.uses()) { 3865 if (Instruction *Used = dyn_cast<Instruction>(U.getUser())) 3866 Assert(Used->getParent() != nullptr, 3867 "Instruction referencing" 3868 " instruction not embedded in a basic block!", 3869 &I, Used); 3870 else { 3871 CheckFailed("Use of instruction is not an instruction!", U); 3872 return; 3873 } 3874 } 3875 3876 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { 3877 Assert(I.getOperand(i) != nullptr, "Instruction has null operand!", &I); 3878 3879 // Check to make sure that only first-class-values are operands to 3880 // instructions. 3881 if (!I.getOperand(i)->getType()->isFirstClassType()) { 3882 Assert(false, "Instruction operands must be first-class values!", &I); 3883 } 3884 3885 if (Function *F = dyn_cast<Function>(I.getOperand(i))) { 3886 // Check to make sure that the "address of" an intrinsic function is never 3887 // taken. 3888 Assert( 3889 !F->isIntrinsic() || 3890 i == (isa<CallInst>(I) ? e - 1 : isa<InvokeInst>(I) ? e - 3 : 0), 3891 "Cannot take the address of an intrinsic!", &I); 3892 Assert( 3893 !F->isIntrinsic() || isa<CallInst>(I) || 3894 F->getIntrinsicID() == Intrinsic::donothing || 3895 F->getIntrinsicID() == Intrinsic::coro_resume || 3896 F->getIntrinsicID() == Intrinsic::coro_destroy || 3897 F->getIntrinsicID() == Intrinsic::experimental_patchpoint_void || 3898 F->getIntrinsicID() == Intrinsic::experimental_patchpoint_i64 || 3899 F->getIntrinsicID() == Intrinsic::experimental_gc_statepoint, 3900 "Cannot invoke an intrinsic other than donothing, patchpoint, " 3901 "statepoint, coro_resume or coro_destroy", 3902 &I); 3903 Assert(F->getParent() == &M, "Referencing function in another module!", 3904 &I, &M, F, F->getParent()); 3905 } else if (BasicBlock *OpBB = dyn_cast<BasicBlock>(I.getOperand(i))) { 3906 Assert(OpBB->getParent() == BB->getParent(), 3907 "Referring to a basic block in another function!", &I); 3908 } else if (Argument *OpArg = dyn_cast<Argument>(I.getOperand(i))) { 3909 Assert(OpArg->getParent() == BB->getParent(), 3910 "Referring to an argument in another function!", &I); 3911 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(I.getOperand(i))) { 3912 Assert(GV->getParent() == &M, "Referencing global in another module!", &I, 3913 &M, GV, GV->getParent()); 3914 } else if (isa<Instruction>(I.getOperand(i))) { 3915 verifyDominatesUse(I, i); 3916 } else if (isa<InlineAsm>(I.getOperand(i))) { 3917 Assert((i + 1 == e && isa<CallInst>(I)) || 3918 (i + 3 == e && isa<InvokeInst>(I)), 3919 "Cannot take the address of an inline asm!", &I); 3920 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(I.getOperand(i))) { 3921 if (CE->getType()->isPtrOrPtrVectorTy() || 3922 !DL.getNonIntegralAddressSpaces().empty()) { 3923 // If we have a ConstantExpr pointer, we need to see if it came from an 3924 // illegal bitcast. If the datalayout string specifies non-integral 3925 // address spaces then we also need to check for illegal ptrtoint and 3926 // inttoptr expressions. 3927 visitConstantExprsRecursively(CE); 3928 } 3929 } 3930 } 3931 3932 if (MDNode *MD = I.getMetadata(LLVMContext::MD_fpmath)) { 3933 Assert(I.getType()->isFPOrFPVectorTy(), 3934 "fpmath requires a floating point result!", &I); 3935 Assert(MD->getNumOperands() == 1, "fpmath takes one operand!", &I); 3936 if (ConstantFP *CFP0 = 3937 mdconst::dyn_extract_or_null<ConstantFP>(MD->getOperand(0))) { 3938 const APFloat &Accuracy = CFP0->getValueAPF(); 3939 Assert(&Accuracy.getSemantics() == &APFloat::IEEEsingle(), 3940 "fpmath accuracy must have float type", &I); 3941 Assert(Accuracy.isFiniteNonZero() && !Accuracy.isNegative(), 3942 "fpmath accuracy not a positive number!", &I); 3943 } else { 3944 Assert(false, "invalid fpmath accuracy!", &I); 3945 } 3946 } 3947 3948 if (MDNode *Range = I.getMetadata(LLVMContext::MD_range)) { 3949 Assert(isa<LoadInst>(I) || isa<CallInst>(I) || isa<InvokeInst>(I), 3950 "Ranges are only for loads, calls and invokes!", &I); 3951 visitRangeMetadata(I, Range, I.getType()); 3952 } 3953 3954 if (I.getMetadata(LLVMContext::MD_nonnull)) { 3955 Assert(I.getType()->isPointerTy(), "nonnull applies only to pointer types", 3956 &I); 3957 Assert(isa<LoadInst>(I), 3958 "nonnull applies only to load instructions, use attributes" 3959 " for calls or invokes", 3960 &I); 3961 } 3962 3963 if (MDNode *MD = I.getMetadata(LLVMContext::MD_dereferenceable)) 3964 visitDereferenceableMetadata(I, MD); 3965 3966 if (MDNode *MD = I.getMetadata(LLVMContext::MD_dereferenceable_or_null)) 3967 visitDereferenceableMetadata(I, MD); 3968 3969 if (MDNode *TBAA = I.getMetadata(LLVMContext::MD_tbaa)) 3970 TBAAVerifyHelper.visitTBAAMetadata(I, TBAA); 3971 3972 if (MDNode *AlignMD = I.getMetadata(LLVMContext::MD_align)) { 3973 Assert(I.getType()->isPointerTy(), "align applies only to pointer types", 3974 &I); 3975 Assert(isa<LoadInst>(I), "align applies only to load instructions, " 3976 "use attributes for calls or invokes", &I); 3977 Assert(AlignMD->getNumOperands() == 1, "align takes one operand!", &I); 3978 ConstantInt *CI = mdconst::dyn_extract<ConstantInt>(AlignMD->getOperand(0)); 3979 Assert(CI && CI->getType()->isIntegerTy(64), 3980 "align metadata value must be an i64!", &I); 3981 uint64_t Align = CI->getZExtValue(); 3982 Assert(isPowerOf2_64(Align), 3983 "align metadata value must be a power of 2!", &I); 3984 Assert(Align <= Value::MaximumAlignment, 3985 "alignment is larger that implementation defined limit", &I); 3986 } 3987 3988 if (MDNode *N = I.getDebugLoc().getAsMDNode()) { 3989 AssertDI(isa<DILocation>(N), "invalid !dbg metadata attachment", &I, N); 3990 visitMDNode(*N); 3991 } 3992 3993 if (auto *DII = dyn_cast<DbgVariableIntrinsic>(&I)) 3994 verifyFragmentExpression(*DII); 3995 3996 InstsInThisBlock.insert(&I); 3997 } 3998 3999 /// Allow intrinsics to be verified in different ways. 4000 void Verifier::visitIntrinsicCallSite(Intrinsic::ID ID, CallSite CS) { 4001 Function *IF = CS.getCalledFunction(); 4002 Assert(IF->isDeclaration(), "Intrinsic functions should never be defined!", 4003 IF); 4004 4005 // Verify that the intrinsic prototype lines up with what the .td files 4006 // describe. 4007 FunctionType *IFTy = IF->getFunctionType(); 4008 bool IsVarArg = IFTy->isVarArg(); 4009 4010 SmallVector<Intrinsic::IITDescriptor, 8> Table; 4011 getIntrinsicInfoTableEntries(ID, Table); 4012 ArrayRef<Intrinsic::IITDescriptor> TableRef = Table; 4013 4014 SmallVector<Type *, 4> ArgTys; 4015 Assert(!Intrinsic::matchIntrinsicType(IFTy->getReturnType(), 4016 TableRef, ArgTys), 4017 "Intrinsic has incorrect return type!", IF); 4018 for (unsigned i = 0, e = IFTy->getNumParams(); i != e; ++i) 4019 Assert(!Intrinsic::matchIntrinsicType(IFTy->getParamType(i), 4020 TableRef, ArgTys), 4021 "Intrinsic has incorrect argument type!", IF); 4022 4023 // Verify if the intrinsic call matches the vararg property. 4024 if (IsVarArg) 4025 Assert(!Intrinsic::matchIntrinsicVarArg(IsVarArg, TableRef), 4026 "Intrinsic was not defined with variable arguments!", IF); 4027 else 4028 Assert(!Intrinsic::matchIntrinsicVarArg(IsVarArg, TableRef), 4029 "Callsite was not defined with variable arguments!", IF); 4030 4031 // All descriptors should be absorbed by now. 4032 Assert(TableRef.empty(), "Intrinsic has too few arguments!", IF); 4033 4034 // Now that we have the intrinsic ID and the actual argument types (and we 4035 // know they are legal for the intrinsic!) get the intrinsic name through the 4036 // usual means. This allows us to verify the mangling of argument types into 4037 // the name. 4038 const std::string ExpectedName = Intrinsic::getName(ID, ArgTys); 4039 Assert(ExpectedName == IF->getName(), 4040 "Intrinsic name not mangled correctly for type arguments! " 4041 "Should be: " + 4042 ExpectedName, 4043 IF); 4044 4045 // If the intrinsic takes MDNode arguments, verify that they are either global 4046 // or are local to *this* function. 4047 for (Value *V : CS.args()) 4048 if (auto *MD = dyn_cast<MetadataAsValue>(V)) 4049 visitMetadataAsValue(*MD, CS.getCaller()); 4050 4051 switch (ID) { 4052 default: 4053 break; 4054 case Intrinsic::coro_id: { 4055 auto *InfoArg = CS.getArgOperand(3)->stripPointerCasts(); 4056 if (isa<ConstantPointerNull>(InfoArg)) 4057 break; 4058 auto *GV = dyn_cast<GlobalVariable>(InfoArg); 4059 Assert(GV && GV->isConstant() && GV->hasDefinitiveInitializer(), 4060 "info argument of llvm.coro.begin must refer to an initialized " 4061 "constant"); 4062 Constant *Init = GV->getInitializer(); 4063 Assert(isa<ConstantStruct>(Init) || isa<ConstantArray>(Init), 4064 "info argument of llvm.coro.begin must refer to either a struct or " 4065 "an array"); 4066 break; 4067 } 4068 case Intrinsic::ctlz: // llvm.ctlz 4069 case Intrinsic::cttz: // llvm.cttz 4070 Assert(isa<ConstantInt>(CS.getArgOperand(1)), 4071 "is_zero_undef argument of bit counting intrinsics must be a " 4072 "constant int", 4073 CS); 4074 break; 4075 case Intrinsic::experimental_constrained_fadd: 4076 case Intrinsic::experimental_constrained_fsub: 4077 case Intrinsic::experimental_constrained_fmul: 4078 case Intrinsic::experimental_constrained_fdiv: 4079 case Intrinsic::experimental_constrained_frem: 4080 case Intrinsic::experimental_constrained_fma: 4081 case Intrinsic::experimental_constrained_sqrt: 4082 case Intrinsic::experimental_constrained_pow: 4083 case Intrinsic::experimental_constrained_powi: 4084 case Intrinsic::experimental_constrained_sin: 4085 case Intrinsic::experimental_constrained_cos: 4086 case Intrinsic::experimental_constrained_exp: 4087 case Intrinsic::experimental_constrained_exp2: 4088 case Intrinsic::experimental_constrained_log: 4089 case Intrinsic::experimental_constrained_log10: 4090 case Intrinsic::experimental_constrained_log2: 4091 case Intrinsic::experimental_constrained_rint: 4092 case Intrinsic::experimental_constrained_nearbyint: 4093 visitConstrainedFPIntrinsic( 4094 cast<ConstrainedFPIntrinsic>(*CS.getInstruction())); 4095 break; 4096 case Intrinsic::dbg_declare: // llvm.dbg.declare 4097 Assert(isa<MetadataAsValue>(CS.getArgOperand(0)), 4098 "invalid llvm.dbg.declare intrinsic call 1", CS); 4099 visitDbgIntrinsic("declare", cast<DbgVariableIntrinsic>(*CS.getInstruction())); 4100 break; 4101 case Intrinsic::dbg_addr: // llvm.dbg.addr 4102 visitDbgIntrinsic("addr", cast<DbgVariableIntrinsic>(*CS.getInstruction())); 4103 break; 4104 case Intrinsic::dbg_value: // llvm.dbg.value 4105 visitDbgIntrinsic("value", cast<DbgVariableIntrinsic>(*CS.getInstruction())); 4106 break; 4107 case Intrinsic::dbg_label: // llvm.dbg.label 4108 visitDbgLabelIntrinsic("label", cast<DbgLabelInst>(*CS.getInstruction())); 4109 break; 4110 case Intrinsic::memcpy: 4111 case Intrinsic::memmove: 4112 case Intrinsic::memset: { 4113 const auto *MI = cast<MemIntrinsic>(CS.getInstruction()); 4114 auto IsValidAlignment = [&](unsigned Alignment) -> bool { 4115 return Alignment == 0 || isPowerOf2_32(Alignment); 4116 }; 4117 Assert(IsValidAlignment(MI->getDestAlignment()), 4118 "alignment of arg 0 of memory intrinsic must be 0 or a power of 2", 4119 CS); 4120 if (const auto *MTI = dyn_cast<MemTransferInst>(MI)) { 4121 Assert(IsValidAlignment(MTI->getSourceAlignment()), 4122 "alignment of arg 1 of memory intrinsic must be 0 or a power of 2", 4123 CS); 4124 } 4125 Assert(isa<ConstantInt>(CS.getArgOperand(3)), 4126 "isvolatile argument of memory intrinsics must be a constant int", 4127 CS); 4128 break; 4129 } 4130 case Intrinsic::memcpy_element_unordered_atomic: 4131 case Intrinsic::memmove_element_unordered_atomic: 4132 case Intrinsic::memset_element_unordered_atomic: { 4133 const auto *AMI = cast<AtomicMemIntrinsic>(CS.getInstruction()); 4134 4135 ConstantInt *ElementSizeCI = 4136 dyn_cast<ConstantInt>(AMI->getRawElementSizeInBytes()); 4137 Assert(ElementSizeCI, 4138 "element size of the element-wise unordered atomic memory " 4139 "intrinsic must be a constant int", 4140 CS); 4141 const APInt &ElementSizeVal = ElementSizeCI->getValue(); 4142 Assert(ElementSizeVal.isPowerOf2(), 4143 "element size of the element-wise atomic memory intrinsic " 4144 "must be a power of 2", 4145 CS); 4146 4147 if (auto *LengthCI = dyn_cast<ConstantInt>(AMI->getLength())) { 4148 uint64_t Length = LengthCI->getZExtValue(); 4149 uint64_t ElementSize = AMI->getElementSizeInBytes(); 4150 Assert((Length % ElementSize) == 0, 4151 "constant length must be a multiple of the element size in the " 4152 "element-wise atomic memory intrinsic", 4153 CS); 4154 } 4155 4156 auto IsValidAlignment = [&](uint64_t Alignment) { 4157 return isPowerOf2_64(Alignment) && ElementSizeVal.ule(Alignment); 4158 }; 4159 uint64_t DstAlignment = AMI->getDestAlignment(); 4160 Assert(IsValidAlignment(DstAlignment), 4161 "incorrect alignment of the destination argument", CS); 4162 if (const auto *AMT = dyn_cast<AtomicMemTransferInst>(AMI)) { 4163 uint64_t SrcAlignment = AMT->getSourceAlignment(); 4164 Assert(IsValidAlignment(SrcAlignment), 4165 "incorrect alignment of the source argument", CS); 4166 } 4167 break; 4168 } 4169 case Intrinsic::gcroot: 4170 case Intrinsic::gcwrite: 4171 case Intrinsic::gcread: 4172 if (ID == Intrinsic::gcroot) { 4173 AllocaInst *AI = 4174 dyn_cast<AllocaInst>(CS.getArgOperand(0)->stripPointerCasts()); 4175 Assert(AI, "llvm.gcroot parameter #1 must be an alloca.", CS); 4176 Assert(isa<Constant>(CS.getArgOperand(1)), 4177 "llvm.gcroot parameter #2 must be a constant.", CS); 4178 if (!AI->getAllocatedType()->isPointerTy()) { 4179 Assert(!isa<ConstantPointerNull>(CS.getArgOperand(1)), 4180 "llvm.gcroot parameter #1 must either be a pointer alloca, " 4181 "or argument #2 must be a non-null constant.", 4182 CS); 4183 } 4184 } 4185 4186 Assert(CS.getParent()->getParent()->hasGC(), 4187 "Enclosing function does not use GC.", CS); 4188 break; 4189 case Intrinsic::init_trampoline: 4190 Assert(isa<Function>(CS.getArgOperand(1)->stripPointerCasts()), 4191 "llvm.init_trampoline parameter #2 must resolve to a function.", 4192 CS); 4193 break; 4194 case Intrinsic::prefetch: 4195 Assert(isa<ConstantInt>(CS.getArgOperand(1)) && 4196 isa<ConstantInt>(CS.getArgOperand(2)) && 4197 cast<ConstantInt>(CS.getArgOperand(1))->getZExtValue() < 2 && 4198 cast<ConstantInt>(CS.getArgOperand(2))->getZExtValue() < 4, 4199 "invalid arguments to llvm.prefetch", CS); 4200 break; 4201 case Intrinsic::stackprotector: 4202 Assert(isa<AllocaInst>(CS.getArgOperand(1)->stripPointerCasts()), 4203 "llvm.stackprotector parameter #2 must resolve to an alloca.", CS); 4204 break; 4205 case Intrinsic::lifetime_start: 4206 case Intrinsic::lifetime_end: 4207 case Intrinsic::invariant_start: 4208 Assert(isa<ConstantInt>(CS.getArgOperand(0)), 4209 "size argument of memory use markers must be a constant integer", 4210 CS); 4211 break; 4212 case Intrinsic::invariant_end: 4213 Assert(isa<ConstantInt>(CS.getArgOperand(1)), 4214 "llvm.invariant.end parameter #2 must be a constant integer", CS); 4215 break; 4216 4217 case Intrinsic::localescape: { 4218 BasicBlock *BB = CS.getParent(); 4219 Assert(BB == &BB->getParent()->front(), 4220 "llvm.localescape used outside of entry block", CS); 4221 Assert(!SawFrameEscape, 4222 "multiple calls to llvm.localescape in one function", CS); 4223 for (Value *Arg : CS.args()) { 4224 if (isa<ConstantPointerNull>(Arg)) 4225 continue; // Null values are allowed as placeholders. 4226 auto *AI = dyn_cast<AllocaInst>(Arg->stripPointerCasts()); 4227 Assert(AI && AI->isStaticAlloca(), 4228 "llvm.localescape only accepts static allocas", CS); 4229 } 4230 FrameEscapeInfo[BB->getParent()].first = CS.getNumArgOperands(); 4231 SawFrameEscape = true; 4232 break; 4233 } 4234 case Intrinsic::localrecover: { 4235 Value *FnArg = CS.getArgOperand(0)->stripPointerCasts(); 4236 Function *Fn = dyn_cast<Function>(FnArg); 4237 Assert(Fn && !Fn->isDeclaration(), 4238 "llvm.localrecover first " 4239 "argument must be function defined in this module", 4240 CS); 4241 auto *IdxArg = dyn_cast<ConstantInt>(CS.getArgOperand(2)); 4242 Assert(IdxArg, "idx argument of llvm.localrecover must be a constant int", 4243 CS); 4244 auto &Entry = FrameEscapeInfo[Fn]; 4245 Entry.second = unsigned( 4246 std::max(uint64_t(Entry.second), IdxArg->getLimitedValue(~0U) + 1)); 4247 break; 4248 } 4249 4250 case Intrinsic::experimental_gc_statepoint: 4251 Assert(!CS.isInlineAsm(), 4252 "gc.statepoint support for inline assembly unimplemented", CS); 4253 Assert(CS.getParent()->getParent()->hasGC(), 4254 "Enclosing function does not use GC.", CS); 4255 4256 verifyStatepoint(CS); 4257 break; 4258 case Intrinsic::experimental_gc_result: { 4259 Assert(CS.getParent()->getParent()->hasGC(), 4260 "Enclosing function does not use GC.", CS); 4261 // Are we tied to a statepoint properly? 4262 CallSite StatepointCS(CS.getArgOperand(0)); 4263 const Function *StatepointFn = 4264 StatepointCS.getInstruction() ? StatepointCS.getCalledFunction() : nullptr; 4265 Assert(StatepointFn && StatepointFn->isDeclaration() && 4266 StatepointFn->getIntrinsicID() == 4267 Intrinsic::experimental_gc_statepoint, 4268 "gc.result operand #1 must be from a statepoint", CS, 4269 CS.getArgOperand(0)); 4270 4271 // Assert that result type matches wrapped callee. 4272 const Value *Target = StatepointCS.getArgument(2); 4273 auto *PT = cast<PointerType>(Target->getType()); 4274 auto *TargetFuncType = cast<FunctionType>(PT->getElementType()); 4275 Assert(CS.getType() == TargetFuncType->getReturnType(), 4276 "gc.result result type does not match wrapped callee", CS); 4277 break; 4278 } 4279 case Intrinsic::experimental_gc_relocate: { 4280 Assert(CS.getNumArgOperands() == 3, "wrong number of arguments", CS); 4281 4282 Assert(isa<PointerType>(CS.getType()->getScalarType()), 4283 "gc.relocate must return a pointer or a vector of pointers", CS); 4284 4285 // Check that this relocate is correctly tied to the statepoint 4286 4287 // This is case for relocate on the unwinding path of an invoke statepoint 4288 if (LandingPadInst *LandingPad = 4289 dyn_cast<LandingPadInst>(CS.getArgOperand(0))) { 4290 4291 const BasicBlock *InvokeBB = 4292 LandingPad->getParent()->getUniquePredecessor(); 4293 4294 // Landingpad relocates should have only one predecessor with invoke 4295 // statepoint terminator 4296 Assert(InvokeBB, "safepoints should have unique landingpads", 4297 LandingPad->getParent()); 4298 Assert(InvokeBB->getTerminator(), "safepoint block should be well formed", 4299 InvokeBB); 4300 Assert(isStatepoint(InvokeBB->getTerminator()), 4301 "gc relocate should be linked to a statepoint", InvokeBB); 4302 } 4303 else { 4304 // In all other cases relocate should be tied to the statepoint directly. 4305 // This covers relocates on a normal return path of invoke statepoint and 4306 // relocates of a call statepoint. 4307 auto Token = CS.getArgOperand(0); 4308 Assert(isa<Instruction>(Token) && isStatepoint(cast<Instruction>(Token)), 4309 "gc relocate is incorrectly tied to the statepoint", CS, Token); 4310 } 4311 4312 // Verify rest of the relocate arguments. 4313 4314 ImmutableCallSite StatepointCS( 4315 cast<GCRelocateInst>(*CS.getInstruction()).getStatepoint()); 4316 4317 // Both the base and derived must be piped through the safepoint. 4318 Value* Base = CS.getArgOperand(1); 4319 Assert(isa<ConstantInt>(Base), 4320 "gc.relocate operand #2 must be integer offset", CS); 4321 4322 Value* Derived = CS.getArgOperand(2); 4323 Assert(isa<ConstantInt>(Derived), 4324 "gc.relocate operand #3 must be integer offset", CS); 4325 4326 const int BaseIndex = cast<ConstantInt>(Base)->getZExtValue(); 4327 const int DerivedIndex = cast<ConstantInt>(Derived)->getZExtValue(); 4328 // Check the bounds 4329 Assert(0 <= BaseIndex && BaseIndex < (int)StatepointCS.arg_size(), 4330 "gc.relocate: statepoint base index out of bounds", CS); 4331 Assert(0 <= DerivedIndex && DerivedIndex < (int)StatepointCS.arg_size(), 4332 "gc.relocate: statepoint derived index out of bounds", CS); 4333 4334 // Check that BaseIndex and DerivedIndex fall within the 'gc parameters' 4335 // section of the statepoint's argument. 4336 Assert(StatepointCS.arg_size() > 0, 4337 "gc.statepoint: insufficient arguments"); 4338 Assert(isa<ConstantInt>(StatepointCS.getArgument(3)), 4339 "gc.statement: number of call arguments must be constant integer"); 4340 const unsigned NumCallArgs = 4341 cast<ConstantInt>(StatepointCS.getArgument(3))->getZExtValue(); 4342 Assert(StatepointCS.arg_size() > NumCallArgs + 5, 4343 "gc.statepoint: mismatch in number of call arguments"); 4344 Assert(isa<ConstantInt>(StatepointCS.getArgument(NumCallArgs + 5)), 4345 "gc.statepoint: number of transition arguments must be " 4346 "a constant integer"); 4347 const int NumTransitionArgs = 4348 cast<ConstantInt>(StatepointCS.getArgument(NumCallArgs + 5)) 4349 ->getZExtValue(); 4350 const int DeoptArgsStart = 4 + NumCallArgs + 1 + NumTransitionArgs + 1; 4351 Assert(isa<ConstantInt>(StatepointCS.getArgument(DeoptArgsStart)), 4352 "gc.statepoint: number of deoptimization arguments must be " 4353 "a constant integer"); 4354 const int NumDeoptArgs = 4355 cast<ConstantInt>(StatepointCS.getArgument(DeoptArgsStart)) 4356 ->getZExtValue(); 4357 const int GCParamArgsStart = DeoptArgsStart + 1 + NumDeoptArgs; 4358 const int GCParamArgsEnd = StatepointCS.arg_size(); 4359 Assert(GCParamArgsStart <= BaseIndex && BaseIndex < GCParamArgsEnd, 4360 "gc.relocate: statepoint base index doesn't fall within the " 4361 "'gc parameters' section of the statepoint call", 4362 CS); 4363 Assert(GCParamArgsStart <= DerivedIndex && DerivedIndex < GCParamArgsEnd, 4364 "gc.relocate: statepoint derived index doesn't fall within the " 4365 "'gc parameters' section of the statepoint call", 4366 CS); 4367 4368 // Relocated value must be either a pointer type or vector-of-pointer type, 4369 // but gc_relocate does not need to return the same pointer type as the 4370 // relocated pointer. It can be casted to the correct type later if it's 4371 // desired. However, they must have the same address space and 'vectorness' 4372 GCRelocateInst &Relocate = cast<GCRelocateInst>(*CS.getInstruction()); 4373 Assert(Relocate.getDerivedPtr()->getType()->isPtrOrPtrVectorTy(), 4374 "gc.relocate: relocated value must be a gc pointer", CS); 4375 4376 auto ResultType = CS.getType(); 4377 auto DerivedType = Relocate.getDerivedPtr()->getType(); 4378 Assert(ResultType->isVectorTy() == DerivedType->isVectorTy(), 4379 "gc.relocate: vector relocates to vector and pointer to pointer", 4380 CS); 4381 Assert( 4382 ResultType->getPointerAddressSpace() == 4383 DerivedType->getPointerAddressSpace(), 4384 "gc.relocate: relocating a pointer shouldn't change its address space", 4385 CS); 4386 break; 4387 } 4388 case Intrinsic::eh_exceptioncode: 4389 case Intrinsic::eh_exceptionpointer: { 4390 Assert(isa<CatchPadInst>(CS.getArgOperand(0)), 4391 "eh.exceptionpointer argument must be a catchpad", CS); 4392 break; 4393 } 4394 case Intrinsic::masked_load: { 4395 Assert(CS.getType()->isVectorTy(), "masked_load: must return a vector", CS); 4396 4397 Value *Ptr = CS.getArgOperand(0); 4398 //Value *Alignment = CS.getArgOperand(1); 4399 Value *Mask = CS.getArgOperand(2); 4400 Value *PassThru = CS.getArgOperand(3); 4401 Assert(Mask->getType()->isVectorTy(), 4402 "masked_load: mask must be vector", CS); 4403 4404 // DataTy is the overloaded type 4405 Type *DataTy = cast<PointerType>(Ptr->getType())->getElementType(); 4406 Assert(DataTy == CS.getType(), 4407 "masked_load: return must match pointer type", CS); 4408 Assert(PassThru->getType() == DataTy, 4409 "masked_load: pass through and data type must match", CS); 4410 Assert(Mask->getType()->getVectorNumElements() == 4411 DataTy->getVectorNumElements(), 4412 "masked_load: vector mask must be same length as data", CS); 4413 break; 4414 } 4415 case Intrinsic::masked_store: { 4416 Value *Val = CS.getArgOperand(0); 4417 Value *Ptr = CS.getArgOperand(1); 4418 //Value *Alignment = CS.getArgOperand(2); 4419 Value *Mask = CS.getArgOperand(3); 4420 Assert(Mask->getType()->isVectorTy(), 4421 "masked_store: mask must be vector", CS); 4422 4423 // DataTy is the overloaded type 4424 Type *DataTy = cast<PointerType>(Ptr->getType())->getElementType(); 4425 Assert(DataTy == Val->getType(), 4426 "masked_store: storee must match pointer type", CS); 4427 Assert(Mask->getType()->getVectorNumElements() == 4428 DataTy->getVectorNumElements(), 4429 "masked_store: vector mask must be same length as data", CS); 4430 break; 4431 } 4432 4433 case Intrinsic::experimental_guard: { 4434 Assert(CS.isCall(), "experimental_guard cannot be invoked", CS); 4435 Assert(CS.countOperandBundlesOfType(LLVMContext::OB_deopt) == 1, 4436 "experimental_guard must have exactly one " 4437 "\"deopt\" operand bundle"); 4438 break; 4439 } 4440 4441 case Intrinsic::experimental_deoptimize: { 4442 Assert(CS.isCall(), "experimental_deoptimize cannot be invoked", CS); 4443 Assert(CS.countOperandBundlesOfType(LLVMContext::OB_deopt) == 1, 4444 "experimental_deoptimize must have exactly one " 4445 "\"deopt\" operand bundle"); 4446 Assert(CS.getType() == CS.getInstruction()->getFunction()->getReturnType(), 4447 "experimental_deoptimize return type must match caller return type"); 4448 4449 if (CS.isCall()) { 4450 auto *DeoptCI = CS.getInstruction(); 4451 auto *RI = dyn_cast<ReturnInst>(DeoptCI->getNextNode()); 4452 Assert(RI, 4453 "calls to experimental_deoptimize must be followed by a return"); 4454 4455 if (!CS.getType()->isVoidTy() && RI) 4456 Assert(RI->getReturnValue() == DeoptCI, 4457 "calls to experimental_deoptimize must be followed by a return " 4458 "of the value computed by experimental_deoptimize"); 4459 } 4460 4461 break; 4462 } 4463 }; 4464 } 4465 4466 /// Carefully grab the subprogram from a local scope. 4467 /// 4468 /// This carefully grabs the subprogram from a local scope, avoiding the 4469 /// built-in assertions that would typically fire. 4470 static DISubprogram *getSubprogram(Metadata *LocalScope) { 4471 if (!LocalScope) 4472 return nullptr; 4473 4474 if (auto *SP = dyn_cast<DISubprogram>(LocalScope)) 4475 return SP; 4476 4477 if (auto *LB = dyn_cast<DILexicalBlockBase>(LocalScope)) 4478 return getSubprogram(LB->getRawScope()); 4479 4480 // Just return null; broken scope chains are checked elsewhere. 4481 assert(!isa<DILocalScope>(LocalScope) && "Unknown type of local scope"); 4482 return nullptr; 4483 } 4484 4485 void Verifier::visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI) { 4486 unsigned NumOperands = FPI.getNumArgOperands(); 4487 Assert(((NumOperands == 5 && FPI.isTernaryOp()) || 4488 (NumOperands == 3 && FPI.isUnaryOp()) || (NumOperands == 4)), 4489 "invalid arguments for constrained FP intrinsic", &FPI); 4490 Assert(isa<MetadataAsValue>(FPI.getArgOperand(NumOperands-1)), 4491 "invalid exception behavior argument", &FPI); 4492 Assert(isa<MetadataAsValue>(FPI.getArgOperand(NumOperands-2)), 4493 "invalid rounding mode argument", &FPI); 4494 Assert(FPI.getRoundingMode() != ConstrainedFPIntrinsic::rmInvalid, 4495 "invalid rounding mode argument", &FPI); 4496 Assert(FPI.getExceptionBehavior() != ConstrainedFPIntrinsic::ebInvalid, 4497 "invalid exception behavior argument", &FPI); 4498 } 4499 4500 void Verifier::visitDbgIntrinsic(StringRef Kind, DbgVariableIntrinsic &DII) { 4501 auto *MD = cast<MetadataAsValue>(DII.getArgOperand(0))->getMetadata(); 4502 AssertDI(isa<ValueAsMetadata>(MD) || 4503 (isa<MDNode>(MD) && !cast<MDNode>(MD)->getNumOperands()), 4504 "invalid llvm.dbg." + Kind + " intrinsic address/value", &DII, MD); 4505 AssertDI(isa<DILocalVariable>(DII.getRawVariable()), 4506 "invalid llvm.dbg." + Kind + " intrinsic variable", &DII, 4507 DII.getRawVariable()); 4508 AssertDI(isa<DIExpression>(DII.getRawExpression()), 4509 "invalid llvm.dbg." + Kind + " intrinsic expression", &DII, 4510 DII.getRawExpression()); 4511 4512 // Ignore broken !dbg attachments; they're checked elsewhere. 4513 if (MDNode *N = DII.getDebugLoc().getAsMDNode()) 4514 if (!isa<DILocation>(N)) 4515 return; 4516 4517 BasicBlock *BB = DII.getParent(); 4518 Function *F = BB ? BB->getParent() : nullptr; 4519 4520 // The scopes for variables and !dbg attachments must agree. 4521 DILocalVariable *Var = DII.getVariable(); 4522 DILocation *Loc = DII.getDebugLoc(); 4523 AssertDI(Loc, "llvm.dbg." + Kind + " intrinsic requires a !dbg attachment", 4524 &DII, BB, F); 4525 4526 DISubprogram *VarSP = getSubprogram(Var->getRawScope()); 4527 DISubprogram *LocSP = getSubprogram(Loc->getRawScope()); 4528 if (!VarSP || !LocSP) 4529 return; // Broken scope chains are checked elsewhere. 4530 4531 AssertDI(VarSP == LocSP, "mismatched subprogram between llvm.dbg." + Kind + 4532 " variable and !dbg attachment", 4533 &DII, BB, F, Var, Var->getScope()->getSubprogram(), Loc, 4534 Loc->getScope()->getSubprogram()); 4535 4536 verifyFnArgs(DII); 4537 } 4538 4539 void Verifier::visitDbgLabelIntrinsic(StringRef Kind, DbgLabelInst &DLI) { 4540 AssertDI(isa<DILabel>(DLI.getRawLabel()), 4541 "invalid llvm.dbg." + Kind + " intrinsic variable", &DLI, 4542 DLI.getRawLabel()); 4543 4544 // Ignore broken !dbg attachments; they're checked elsewhere. 4545 if (MDNode *N = DLI.getDebugLoc().getAsMDNode()) 4546 if (!isa<DILocation>(N)) 4547 return; 4548 4549 BasicBlock *BB = DLI.getParent(); 4550 Function *F = BB ? BB->getParent() : nullptr; 4551 4552 // The scopes for variables and !dbg attachments must agree. 4553 DILabel *Label = DLI.getLabel(); 4554 DILocation *Loc = DLI.getDebugLoc(); 4555 Assert(Loc, "llvm.dbg." + Kind + " intrinsic requires a !dbg attachment", 4556 &DLI, BB, F); 4557 4558 DISubprogram *LabelSP = getSubprogram(Label->getRawScope()); 4559 DISubprogram *LocSP = getSubprogram(Loc->getRawScope()); 4560 if (!LabelSP || !LocSP) 4561 return; 4562 4563 AssertDI(LabelSP == LocSP, "mismatched subprogram between llvm.dbg." + Kind + 4564 " label and !dbg attachment", 4565 &DLI, BB, F, Label, Label->getScope()->getSubprogram(), Loc, 4566 Loc->getScope()->getSubprogram()); 4567 } 4568 4569 void Verifier::verifyFragmentExpression(const DbgVariableIntrinsic &I) { 4570 DILocalVariable *V = dyn_cast_or_null<DILocalVariable>(I.getRawVariable()); 4571 DIExpression *E = dyn_cast_or_null<DIExpression>(I.getRawExpression()); 4572 4573 // We don't know whether this intrinsic verified correctly. 4574 if (!V || !E || !E->isValid()) 4575 return; 4576 4577 // Nothing to do if this isn't a DW_OP_LLVM_fragment expression. 4578 auto Fragment = E->getFragmentInfo(); 4579 if (!Fragment) 4580 return; 4581 4582 // The frontend helps out GDB by emitting the members of local anonymous 4583 // unions as artificial local variables with shared storage. When SROA splits 4584 // the storage for artificial local variables that are smaller than the entire 4585 // union, the overhang piece will be outside of the allotted space for the 4586 // variable and this check fails. 4587 // FIXME: Remove this check as soon as clang stops doing this; it hides bugs. 4588 if (V->isArtificial()) 4589 return; 4590 4591 verifyFragmentExpression(*V, *Fragment, &I); 4592 } 4593 4594 template <typename ValueOrMetadata> 4595 void Verifier::verifyFragmentExpression(const DIVariable &V, 4596 DIExpression::FragmentInfo Fragment, 4597 ValueOrMetadata *Desc) { 4598 // If there's no size, the type is broken, but that should be checked 4599 // elsewhere. 4600 auto VarSize = V.getSizeInBits(); 4601 if (!VarSize) 4602 return; 4603 4604 unsigned FragSize = Fragment.SizeInBits; 4605 unsigned FragOffset = Fragment.OffsetInBits; 4606 AssertDI(FragSize + FragOffset <= *VarSize, 4607 "fragment is larger than or outside of variable", Desc, &V); 4608 AssertDI(FragSize != *VarSize, "fragment covers entire variable", Desc, &V); 4609 } 4610 4611 void Verifier::verifyFnArgs(const DbgVariableIntrinsic &I) { 4612 // This function does not take the scope of noninlined function arguments into 4613 // account. Don't run it if current function is nodebug, because it may 4614 // contain inlined debug intrinsics. 4615 if (!HasDebugInfo) 4616 return; 4617 4618 // For performance reasons only check non-inlined ones. 4619 if (I.getDebugLoc()->getInlinedAt()) 4620 return; 4621 4622 DILocalVariable *Var = I.getVariable(); 4623 AssertDI(Var, "dbg intrinsic without variable"); 4624 4625 unsigned ArgNo = Var->getArg(); 4626 if (!ArgNo) 4627 return; 4628 4629 // Verify there are no duplicate function argument debug info entries. 4630 // These will cause hard-to-debug assertions in the DWARF backend. 4631 if (DebugFnArgs.size() < ArgNo) 4632 DebugFnArgs.resize(ArgNo, nullptr); 4633 4634 auto *Prev = DebugFnArgs[ArgNo - 1]; 4635 DebugFnArgs[ArgNo - 1] = Var; 4636 AssertDI(!Prev || (Prev == Var), "conflicting debug info for argument", &I, 4637 Prev, Var); 4638 } 4639 4640 void Verifier::verifyCompileUnits() { 4641 // When more than one Module is imported into the same context, such as during 4642 // an LTO build before linking the modules, ODR type uniquing may cause types 4643 // to point to a different CU. This check does not make sense in this case. 4644 if (M.getContext().isODRUniquingDebugTypes()) 4645 return; 4646 auto *CUs = M.getNamedMetadata("llvm.dbg.cu"); 4647 SmallPtrSet<const Metadata *, 2> Listed; 4648 if (CUs) 4649 Listed.insert(CUs->op_begin(), CUs->op_end()); 4650 for (auto *CU : CUVisited) 4651 AssertDI(Listed.count(CU), "DICompileUnit not listed in llvm.dbg.cu", CU); 4652 CUVisited.clear(); 4653 } 4654 4655 void Verifier::verifyDeoptimizeCallingConvs() { 4656 if (DeoptimizeDeclarations.empty()) 4657 return; 4658 4659 const Function *First = DeoptimizeDeclarations[0]; 4660 for (auto *F : makeArrayRef(DeoptimizeDeclarations).slice(1)) { 4661 Assert(First->getCallingConv() == F->getCallingConv(), 4662 "All llvm.experimental.deoptimize declarations must have the same " 4663 "calling convention", 4664 First, F); 4665 } 4666 } 4667 4668 //===----------------------------------------------------------------------===// 4669 // Implement the public interfaces to this file... 4670 //===----------------------------------------------------------------------===// 4671 4672 bool llvm::verifyFunction(const Function &f, raw_ostream *OS) { 4673 Function &F = const_cast<Function &>(f); 4674 4675 // Don't use a raw_null_ostream. Printing IR is expensive. 4676 Verifier V(OS, /*ShouldTreatBrokenDebugInfoAsError=*/true, *f.getParent()); 4677 4678 // Note that this function's return value is inverted from what you would 4679 // expect of a function called "verify". 4680 return !V.verify(F); 4681 } 4682 4683 bool llvm::verifyModule(const Module &M, raw_ostream *OS, 4684 bool *BrokenDebugInfo) { 4685 // Don't use a raw_null_ostream. Printing IR is expensive. 4686 Verifier V(OS, /*ShouldTreatBrokenDebugInfoAsError=*/!BrokenDebugInfo, M); 4687 4688 bool Broken = false; 4689 for (const Function &F : M) 4690 Broken |= !V.verify(F); 4691 4692 Broken |= !V.verify(); 4693 if (BrokenDebugInfo) 4694 *BrokenDebugInfo = V.hasBrokenDebugInfo(); 4695 // Note that this function's return value is inverted from what you would 4696 // expect of a function called "verify". 4697 return Broken; 4698 } 4699 4700 namespace { 4701 4702 struct VerifierLegacyPass : public FunctionPass { 4703 static char ID; 4704 4705 std::unique_ptr<Verifier> V; 4706 bool FatalErrors = true; 4707 4708 VerifierLegacyPass() : FunctionPass(ID) { 4709 initializeVerifierLegacyPassPass(*PassRegistry::getPassRegistry()); 4710 } 4711 explicit VerifierLegacyPass(bool FatalErrors) 4712 : FunctionPass(ID), 4713 FatalErrors(FatalErrors) { 4714 initializeVerifierLegacyPassPass(*PassRegistry::getPassRegistry()); 4715 } 4716 4717 bool doInitialization(Module &M) override { 4718 V = llvm::make_unique<Verifier>( 4719 &dbgs(), /*ShouldTreatBrokenDebugInfoAsError=*/false, M); 4720 return false; 4721 } 4722 4723 bool runOnFunction(Function &F) override { 4724 if (!V->verify(F) && FatalErrors) 4725 report_fatal_error("Broken function found, compilation aborted!"); 4726 4727 return false; 4728 } 4729 4730 bool doFinalization(Module &M) override { 4731 bool HasErrors = false; 4732 for (Function &F : M) 4733 if (F.isDeclaration()) 4734 HasErrors |= !V->verify(F); 4735 4736 HasErrors |= !V->verify(); 4737 if (FatalErrors && (HasErrors || V->hasBrokenDebugInfo())) 4738 report_fatal_error("Broken module found, compilation aborted!"); 4739 return false; 4740 } 4741 4742 void getAnalysisUsage(AnalysisUsage &AU) const override { 4743 AU.setPreservesAll(); 4744 } 4745 }; 4746 4747 } // end anonymous namespace 4748 4749 /// Helper to issue failure from the TBAA verification 4750 template <typename... Tys> void TBAAVerifier::CheckFailed(Tys &&... Args) { 4751 if (Diagnostic) 4752 return Diagnostic->CheckFailed(Args...); 4753 } 4754 4755 #define AssertTBAA(C, ...) \ 4756 do { \ 4757 if (!(C)) { \ 4758 CheckFailed(__VA_ARGS__); \ 4759 return false; \ 4760 } \ 4761 } while (false) 4762 4763 /// Verify that \p BaseNode can be used as the "base type" in the struct-path 4764 /// TBAA scheme. This means \p BaseNode is either a scalar node, or a 4765 /// struct-type node describing an aggregate data structure (like a struct). 4766 TBAAVerifier::TBAABaseNodeSummary 4767 TBAAVerifier::verifyTBAABaseNode(Instruction &I, const MDNode *BaseNode, 4768 bool IsNewFormat) { 4769 if (BaseNode->getNumOperands() < 2) { 4770 CheckFailed("Base nodes must have at least two operands", &I, BaseNode); 4771 return {true, ~0u}; 4772 } 4773 4774 auto Itr = TBAABaseNodes.find(BaseNode); 4775 if (Itr != TBAABaseNodes.end()) 4776 return Itr->second; 4777 4778 auto Result = verifyTBAABaseNodeImpl(I, BaseNode, IsNewFormat); 4779 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result}); 4780 (void)InsertResult; 4781 assert(InsertResult.second && "We just checked!"); 4782 return Result; 4783 } 4784 4785 TBAAVerifier::TBAABaseNodeSummary 4786 TBAAVerifier::verifyTBAABaseNodeImpl(Instruction &I, const MDNode *BaseNode, 4787 bool IsNewFormat) { 4788 const TBAAVerifier::TBAABaseNodeSummary InvalidNode = {true, ~0u}; 4789 4790 if (BaseNode->getNumOperands() == 2) { 4791 // Scalar nodes can only be accessed at offset 0. 4792 return isValidScalarTBAANode(BaseNode) 4793 ? TBAAVerifier::TBAABaseNodeSummary({false, 0}) 4794 : InvalidNode; 4795 } 4796 4797 if (IsNewFormat) { 4798 if (BaseNode->getNumOperands() % 3 != 0) { 4799 CheckFailed("Access tag nodes must have the number of operands that is a " 4800 "multiple of 3!", BaseNode); 4801 return InvalidNode; 4802 } 4803 } else { 4804 if (BaseNode->getNumOperands() % 2 != 1) { 4805 CheckFailed("Struct tag nodes must have an odd number of operands!", 4806 BaseNode); 4807 return InvalidNode; 4808 } 4809 } 4810 4811 // Check the type size field. 4812 if (IsNewFormat) { 4813 auto *TypeSizeNode = mdconst::dyn_extract_or_null<ConstantInt>( 4814 BaseNode->getOperand(1)); 4815 if (!TypeSizeNode) { 4816 CheckFailed("Type size nodes must be constants!", &I, BaseNode); 4817 return InvalidNode; 4818 } 4819 } 4820 4821 // Check the type name field. In the new format it can be anything. 4822 if (!IsNewFormat && !isa<MDString>(BaseNode->getOperand(0))) { 4823 CheckFailed("Struct tag nodes have a string as their first operand", 4824 BaseNode); 4825 return InvalidNode; 4826 } 4827 4828 bool Failed = false; 4829 4830 Optional<APInt> PrevOffset; 4831 unsigned BitWidth = ~0u; 4832 4833 // We've already checked that BaseNode is not a degenerate root node with one 4834 // operand in \c verifyTBAABaseNode, so this loop should run at least once. 4835 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1; 4836 unsigned NumOpsPerField = IsNewFormat ? 3 : 2; 4837 for (unsigned Idx = FirstFieldOpNo; Idx < BaseNode->getNumOperands(); 4838 Idx += NumOpsPerField) { 4839 const MDOperand &FieldTy = BaseNode->getOperand(Idx); 4840 const MDOperand &FieldOffset = BaseNode->getOperand(Idx + 1); 4841 if (!isa<MDNode>(FieldTy)) { 4842 CheckFailed("Incorrect field entry in struct type node!", &I, BaseNode); 4843 Failed = true; 4844 continue; 4845 } 4846 4847 auto *OffsetEntryCI = 4848 mdconst::dyn_extract_or_null<ConstantInt>(FieldOffset); 4849 if (!OffsetEntryCI) { 4850 CheckFailed("Offset entries must be constants!", &I, BaseNode); 4851 Failed = true; 4852 continue; 4853 } 4854 4855 if (BitWidth == ~0u) 4856 BitWidth = OffsetEntryCI->getBitWidth(); 4857 4858 if (OffsetEntryCI->getBitWidth() != BitWidth) { 4859 CheckFailed( 4860 "Bitwidth between the offsets and struct type entries must match", &I, 4861 BaseNode); 4862 Failed = true; 4863 continue; 4864 } 4865 4866 // NB! As far as I can tell, we generate a non-strictly increasing offset 4867 // sequence only from structs that have zero size bit fields. When 4868 // recursing into a contained struct in \c getFieldNodeFromTBAABaseNode we 4869 // pick the field lexically the latest in struct type metadata node. This 4870 // mirrors the actual behavior of the alias analysis implementation. 4871 bool IsAscending = 4872 !PrevOffset || PrevOffset->ule(OffsetEntryCI->getValue()); 4873 4874 if (!IsAscending) { 4875 CheckFailed("Offsets must be increasing!", &I, BaseNode); 4876 Failed = true; 4877 } 4878 4879 PrevOffset = OffsetEntryCI->getValue(); 4880 4881 if (IsNewFormat) { 4882 auto *MemberSizeNode = mdconst::dyn_extract_or_null<ConstantInt>( 4883 BaseNode->getOperand(Idx + 2)); 4884 if (!MemberSizeNode) { 4885 CheckFailed("Member size entries must be constants!", &I, BaseNode); 4886 Failed = true; 4887 continue; 4888 } 4889 } 4890 } 4891 4892 return Failed ? InvalidNode 4893 : TBAAVerifier::TBAABaseNodeSummary(false, BitWidth); 4894 } 4895 4896 static bool IsRootTBAANode(const MDNode *MD) { 4897 return MD->getNumOperands() < 2; 4898 } 4899 4900 static bool IsScalarTBAANodeImpl(const MDNode *MD, 4901 SmallPtrSetImpl<const MDNode *> &Visited) { 4902 if (MD->getNumOperands() != 2 && MD->getNumOperands() != 3) 4903 return false; 4904 4905 if (!isa<MDString>(MD->getOperand(0))) 4906 return false; 4907 4908 if (MD->getNumOperands() == 3) { 4909 auto *Offset = mdconst::dyn_extract<ConstantInt>(MD->getOperand(2)); 4910 if (!(Offset && Offset->isZero() && isa<MDString>(MD->getOperand(0)))) 4911 return false; 4912 } 4913 4914 auto *Parent = dyn_cast_or_null<MDNode>(MD->getOperand(1)); 4915 return Parent && Visited.insert(Parent).second && 4916 (IsRootTBAANode(Parent) || IsScalarTBAANodeImpl(Parent, Visited)); 4917 } 4918 4919 bool TBAAVerifier::isValidScalarTBAANode(const MDNode *MD) { 4920 auto ResultIt = TBAAScalarNodes.find(MD); 4921 if (ResultIt != TBAAScalarNodes.end()) 4922 return ResultIt->second; 4923 4924 SmallPtrSet<const MDNode *, 4> Visited; 4925 bool Result = IsScalarTBAANodeImpl(MD, Visited); 4926 auto InsertResult = TBAAScalarNodes.insert({MD, Result}); 4927 (void)InsertResult; 4928 assert(InsertResult.second && "Just checked!"); 4929 4930 return Result; 4931 } 4932 4933 /// Returns the field node at the offset \p Offset in \p BaseNode. Update \p 4934 /// Offset in place to be the offset within the field node returned. 4935 /// 4936 /// We assume we've okayed \p BaseNode via \c verifyTBAABaseNode. 4937 MDNode *TBAAVerifier::getFieldNodeFromTBAABaseNode(Instruction &I, 4938 const MDNode *BaseNode, 4939 APInt &Offset, 4940 bool IsNewFormat) { 4941 assert(BaseNode->getNumOperands() >= 2 && "Invalid base node!"); 4942 4943 // Scalar nodes have only one possible "field" -- their parent in the access 4944 // hierarchy. Offset must be zero at this point, but our caller is supposed 4945 // to Assert that. 4946 if (BaseNode->getNumOperands() == 2) 4947 return cast<MDNode>(BaseNode->getOperand(1)); 4948 4949 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1; 4950 unsigned NumOpsPerField = IsNewFormat ? 3 : 2; 4951 for (unsigned Idx = FirstFieldOpNo; Idx < BaseNode->getNumOperands(); 4952 Idx += NumOpsPerField) { 4953 auto *OffsetEntryCI = 4954 mdconst::extract<ConstantInt>(BaseNode->getOperand(Idx + 1)); 4955 if (OffsetEntryCI->getValue().ugt(Offset)) { 4956 if (Idx == FirstFieldOpNo) { 4957 CheckFailed("Could not find TBAA parent in struct type node", &I, 4958 BaseNode, &Offset); 4959 return nullptr; 4960 } 4961 4962 unsigned PrevIdx = Idx - NumOpsPerField; 4963 auto *PrevOffsetEntryCI = 4964 mdconst::extract<ConstantInt>(BaseNode->getOperand(PrevIdx + 1)); 4965 Offset -= PrevOffsetEntryCI->getValue(); 4966 return cast<MDNode>(BaseNode->getOperand(PrevIdx)); 4967 } 4968 } 4969 4970 unsigned LastIdx = BaseNode->getNumOperands() - NumOpsPerField; 4971 auto *LastOffsetEntryCI = mdconst::extract<ConstantInt>( 4972 BaseNode->getOperand(LastIdx + 1)); 4973 Offset -= LastOffsetEntryCI->getValue(); 4974 return cast<MDNode>(BaseNode->getOperand(LastIdx)); 4975 } 4976 4977 static bool isNewFormatTBAATypeNode(llvm::MDNode *Type) { 4978 if (!Type || Type->getNumOperands() < 3) 4979 return false; 4980 4981 // In the new format type nodes shall have a reference to the parent type as 4982 // its first operand. 4983 MDNode *Parent = dyn_cast_or_null<MDNode>(Type->getOperand(0)); 4984 if (!Parent) 4985 return false; 4986 4987 return true; 4988 } 4989 4990 bool TBAAVerifier::visitTBAAMetadata(Instruction &I, const MDNode *MD) { 4991 AssertTBAA(isa<LoadInst>(I) || isa<StoreInst>(I) || isa<CallInst>(I) || 4992 isa<VAArgInst>(I) || isa<AtomicRMWInst>(I) || 4993 isa<AtomicCmpXchgInst>(I), 4994 "This instruction shall not have a TBAA access tag!", &I); 4995 4996 bool IsStructPathTBAA = 4997 isa<MDNode>(MD->getOperand(0)) && MD->getNumOperands() >= 3; 4998 4999 AssertTBAA( 5000 IsStructPathTBAA, 5001 "Old-style TBAA is no longer allowed, use struct-path TBAA instead", &I); 5002 5003 MDNode *BaseNode = dyn_cast_or_null<MDNode>(MD->getOperand(0)); 5004 MDNode *AccessType = dyn_cast_or_null<MDNode>(MD->getOperand(1)); 5005 5006 bool IsNewFormat = isNewFormatTBAATypeNode(AccessType); 5007 5008 if (IsNewFormat) { 5009 AssertTBAA(MD->getNumOperands() == 4 || MD->getNumOperands() == 5, 5010 "Access tag metadata must have either 4 or 5 operands", &I, MD); 5011 } else { 5012 AssertTBAA(MD->getNumOperands() < 5, 5013 "Struct tag metadata must have either 3 or 4 operands", &I, MD); 5014 } 5015 5016 // Check the access size field. 5017 if (IsNewFormat) { 5018 auto *AccessSizeNode = mdconst::dyn_extract_or_null<ConstantInt>( 5019 MD->getOperand(3)); 5020 AssertTBAA(AccessSizeNode, "Access size field must be a constant", &I, MD); 5021 } 5022 5023 // Check the immutability flag. 5024 unsigned ImmutabilityFlagOpNo = IsNewFormat ? 4 : 3; 5025 if (MD->getNumOperands() == ImmutabilityFlagOpNo + 1) { 5026 auto *IsImmutableCI = mdconst::dyn_extract_or_null<ConstantInt>( 5027 MD->getOperand(ImmutabilityFlagOpNo)); 5028 AssertTBAA(IsImmutableCI, 5029 "Immutability tag on struct tag metadata must be a constant", 5030 &I, MD); 5031 AssertTBAA( 5032 IsImmutableCI->isZero() || IsImmutableCI->isOne(), 5033 "Immutability part of the struct tag metadata must be either 0 or 1", 5034 &I, MD); 5035 } 5036 5037 AssertTBAA(BaseNode && AccessType, 5038 "Malformed struct tag metadata: base and access-type " 5039 "should be non-null and point to Metadata nodes", 5040 &I, MD, BaseNode, AccessType); 5041 5042 if (!IsNewFormat) { 5043 AssertTBAA(isValidScalarTBAANode(AccessType), 5044 "Access type node must be a valid scalar type", &I, MD, 5045 AccessType); 5046 } 5047 5048 auto *OffsetCI = mdconst::dyn_extract_or_null<ConstantInt>(MD->getOperand(2)); 5049 AssertTBAA(OffsetCI, "Offset must be constant integer", &I, MD); 5050 5051 APInt Offset = OffsetCI->getValue(); 5052 bool SeenAccessTypeInPath = false; 5053 5054 SmallPtrSet<MDNode *, 4> StructPath; 5055 5056 for (/* empty */; BaseNode && !IsRootTBAANode(BaseNode); 5057 BaseNode = getFieldNodeFromTBAABaseNode(I, BaseNode, Offset, 5058 IsNewFormat)) { 5059 if (!StructPath.insert(BaseNode).second) { 5060 CheckFailed("Cycle detected in struct path", &I, MD); 5061 return false; 5062 } 5063 5064 bool Invalid; 5065 unsigned BaseNodeBitWidth; 5066 std::tie(Invalid, BaseNodeBitWidth) = verifyTBAABaseNode(I, BaseNode, 5067 IsNewFormat); 5068 5069 // If the base node is invalid in itself, then we've already printed all the 5070 // errors we wanted to print. 5071 if (Invalid) 5072 return false; 5073 5074 SeenAccessTypeInPath |= BaseNode == AccessType; 5075 5076 if (isValidScalarTBAANode(BaseNode) || BaseNode == AccessType) 5077 AssertTBAA(Offset == 0, "Offset not zero at the point of scalar access", 5078 &I, MD, &Offset); 5079 5080 AssertTBAA(BaseNodeBitWidth == Offset.getBitWidth() || 5081 (BaseNodeBitWidth == 0 && Offset == 0) || 5082 (IsNewFormat && BaseNodeBitWidth == ~0u), 5083 "Access bit-width not the same as description bit-width", &I, MD, 5084 BaseNodeBitWidth, Offset.getBitWidth()); 5085 5086 if (IsNewFormat && SeenAccessTypeInPath) 5087 break; 5088 } 5089 5090 AssertTBAA(SeenAccessTypeInPath, "Did not see access type in access path!", 5091 &I, MD); 5092 return true; 5093 } 5094 5095 char VerifierLegacyPass::ID = 0; 5096 INITIALIZE_PASS(VerifierLegacyPass, "verify", "Module Verifier", false, false) 5097 5098 FunctionPass *llvm::createVerifierPass(bool FatalErrors) { 5099 return new VerifierLegacyPass(FatalErrors); 5100 } 5101 5102 AnalysisKey VerifierAnalysis::Key; 5103 VerifierAnalysis::Result VerifierAnalysis::run(Module &M, 5104 ModuleAnalysisManager &) { 5105 Result Res; 5106 Res.IRBroken = llvm::verifyModule(M, &dbgs(), &Res.DebugInfoBroken); 5107 return Res; 5108 } 5109 5110 VerifierAnalysis::Result VerifierAnalysis::run(Function &F, 5111 FunctionAnalysisManager &) { 5112 return { llvm::verifyFunction(F, &dbgs()), false }; 5113 } 5114 5115 PreservedAnalyses VerifierPass::run(Module &M, ModuleAnalysisManager &AM) { 5116 auto Res = AM.getResult<VerifierAnalysis>(M); 5117 if (FatalErrors && (Res.IRBroken || Res.DebugInfoBroken)) 5118 report_fatal_error("Broken module found, compilation aborted!"); 5119 5120 return PreservedAnalyses::all(); 5121 } 5122 5123 PreservedAnalyses VerifierPass::run(Function &F, FunctionAnalysisManager &AM) { 5124 auto res = AM.getResult<VerifierAnalysis>(F); 5125 if (res.IRBroken && FatalErrors) 5126 report_fatal_error("Broken function found, compilation aborted!"); 5127 5128 return PreservedAnalyses::all(); 5129 } 5130