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 DILocalScope *Scope = DL->getInlinedAtScope(); 2268 if (Scope && !Seen.insert(Scope).second) 2269 continue; 2270 2271 DISubprogram *SP = Scope ? Scope->getSubprogram() : nullptr; 2272 2273 // Scope and SP could be the same MDNode and we don't want to skip 2274 // validation in that case 2275 if (SP && ((Scope != SP) && !Seen.insert(SP).second)) 2276 continue; 2277 2278 // FIXME: Once N is canonical, check "SP == &N". 2279 AssertDI(SP->describes(&F), 2280 "!dbg attachment points at wrong subprogram for function", N, &F, 2281 &I, DL, Scope, SP); 2282 } 2283 } 2284 2285 // verifyBasicBlock - Verify that a basic block is well formed... 2286 // 2287 void Verifier::visitBasicBlock(BasicBlock &BB) { 2288 InstsInThisBlock.clear(); 2289 2290 // Ensure that basic blocks have terminators! 2291 Assert(BB.getTerminator(), "Basic Block does not have terminator!", &BB); 2292 2293 // Check constraints that this basic block imposes on all of the PHI nodes in 2294 // it. 2295 if (isa<PHINode>(BB.front())) { 2296 SmallVector<BasicBlock*, 8> Preds(pred_begin(&BB), pred_end(&BB)); 2297 SmallVector<std::pair<BasicBlock*, Value*>, 8> Values; 2298 llvm::sort(Preds.begin(), Preds.end()); 2299 for (const PHINode &PN : BB.phis()) { 2300 // Ensure that PHI nodes have at least one entry! 2301 Assert(PN.getNumIncomingValues() != 0, 2302 "PHI nodes must have at least one entry. If the block is dead, " 2303 "the PHI should be removed!", 2304 &PN); 2305 Assert(PN.getNumIncomingValues() == Preds.size(), 2306 "PHINode should have one entry for each predecessor of its " 2307 "parent basic block!", 2308 &PN); 2309 2310 // Get and sort all incoming values in the PHI node... 2311 Values.clear(); 2312 Values.reserve(PN.getNumIncomingValues()); 2313 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) 2314 Values.push_back( 2315 std::make_pair(PN.getIncomingBlock(i), PN.getIncomingValue(i))); 2316 llvm::sort(Values.begin(), Values.end()); 2317 2318 for (unsigned i = 0, e = Values.size(); i != e; ++i) { 2319 // Check to make sure that if there is more than one entry for a 2320 // particular basic block in this PHI node, that the incoming values are 2321 // all identical. 2322 // 2323 Assert(i == 0 || Values[i].first != Values[i - 1].first || 2324 Values[i].second == Values[i - 1].second, 2325 "PHI node has multiple entries for the same basic block with " 2326 "different incoming values!", 2327 &PN, Values[i].first, Values[i].second, Values[i - 1].second); 2328 2329 // Check to make sure that the predecessors and PHI node entries are 2330 // matched up. 2331 Assert(Values[i].first == Preds[i], 2332 "PHI node entries do not match predecessors!", &PN, 2333 Values[i].first, Preds[i]); 2334 } 2335 } 2336 } 2337 2338 // Check that all instructions have their parent pointers set up correctly. 2339 for (auto &I : BB) 2340 { 2341 Assert(I.getParent() == &BB, "Instruction has bogus parent pointer!"); 2342 } 2343 } 2344 2345 void Verifier::visitTerminatorInst(TerminatorInst &I) { 2346 // Ensure that terminators only exist at the end of the basic block. 2347 Assert(&I == I.getParent()->getTerminator(), 2348 "Terminator found in the middle of a basic block!", I.getParent()); 2349 visitInstruction(I); 2350 } 2351 2352 void Verifier::visitBranchInst(BranchInst &BI) { 2353 if (BI.isConditional()) { 2354 Assert(BI.getCondition()->getType()->isIntegerTy(1), 2355 "Branch condition is not 'i1' type!", &BI, BI.getCondition()); 2356 } 2357 visitTerminatorInst(BI); 2358 } 2359 2360 void Verifier::visitReturnInst(ReturnInst &RI) { 2361 Function *F = RI.getParent()->getParent(); 2362 unsigned N = RI.getNumOperands(); 2363 if (F->getReturnType()->isVoidTy()) 2364 Assert(N == 0, 2365 "Found return instr that returns non-void in Function of void " 2366 "return type!", 2367 &RI, F->getReturnType()); 2368 else 2369 Assert(N == 1 && F->getReturnType() == RI.getOperand(0)->getType(), 2370 "Function return type does not match operand " 2371 "type of return inst!", 2372 &RI, F->getReturnType()); 2373 2374 // Check to make sure that the return value has necessary properties for 2375 // terminators... 2376 visitTerminatorInst(RI); 2377 } 2378 2379 void Verifier::visitSwitchInst(SwitchInst &SI) { 2380 // Check to make sure that all of the constants in the switch instruction 2381 // have the same type as the switched-on value. 2382 Type *SwitchTy = SI.getCondition()->getType(); 2383 SmallPtrSet<ConstantInt*, 32> Constants; 2384 for (auto &Case : SI.cases()) { 2385 Assert(Case.getCaseValue()->getType() == SwitchTy, 2386 "Switch constants must all be same type as switch value!", &SI); 2387 Assert(Constants.insert(Case.getCaseValue()).second, 2388 "Duplicate integer as switch case", &SI, Case.getCaseValue()); 2389 } 2390 2391 visitTerminatorInst(SI); 2392 } 2393 2394 void Verifier::visitIndirectBrInst(IndirectBrInst &BI) { 2395 Assert(BI.getAddress()->getType()->isPointerTy(), 2396 "Indirectbr operand must have pointer type!", &BI); 2397 for (unsigned i = 0, e = BI.getNumDestinations(); i != e; ++i) 2398 Assert(BI.getDestination(i)->getType()->isLabelTy(), 2399 "Indirectbr destinations must all have pointer type!", &BI); 2400 2401 visitTerminatorInst(BI); 2402 } 2403 2404 void Verifier::visitSelectInst(SelectInst &SI) { 2405 Assert(!SelectInst::areInvalidOperands(SI.getOperand(0), SI.getOperand(1), 2406 SI.getOperand(2)), 2407 "Invalid operands for select instruction!", &SI); 2408 2409 Assert(SI.getTrueValue()->getType() == SI.getType(), 2410 "Select values must have same type as select instruction!", &SI); 2411 visitInstruction(SI); 2412 } 2413 2414 /// visitUserOp1 - User defined operators shouldn't live beyond the lifetime of 2415 /// a pass, if any exist, it's an error. 2416 /// 2417 void Verifier::visitUserOp1(Instruction &I) { 2418 Assert(false, "User-defined operators should not live outside of a pass!", &I); 2419 } 2420 2421 void Verifier::visitTruncInst(TruncInst &I) { 2422 // Get the source and destination types 2423 Type *SrcTy = I.getOperand(0)->getType(); 2424 Type *DestTy = I.getType(); 2425 2426 // Get the size of the types in bits, we'll need this later 2427 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); 2428 unsigned DestBitSize = DestTy->getScalarSizeInBits(); 2429 2430 Assert(SrcTy->isIntOrIntVectorTy(), "Trunc only operates on integer", &I); 2431 Assert(DestTy->isIntOrIntVectorTy(), "Trunc only produces integer", &I); 2432 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), 2433 "trunc source and destination must both be a vector or neither", &I); 2434 Assert(SrcBitSize > DestBitSize, "DestTy too big for Trunc", &I); 2435 2436 visitInstruction(I); 2437 } 2438 2439 void Verifier::visitZExtInst(ZExtInst &I) { 2440 // Get the source and destination types 2441 Type *SrcTy = I.getOperand(0)->getType(); 2442 Type *DestTy = I.getType(); 2443 2444 // Get the size of the types in bits, we'll need this later 2445 Assert(SrcTy->isIntOrIntVectorTy(), "ZExt only operates on integer", &I); 2446 Assert(DestTy->isIntOrIntVectorTy(), "ZExt only produces an integer", &I); 2447 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), 2448 "zext source and destination must both be a vector or neither", &I); 2449 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); 2450 unsigned DestBitSize = DestTy->getScalarSizeInBits(); 2451 2452 Assert(SrcBitSize < DestBitSize, "Type too small for ZExt", &I); 2453 2454 visitInstruction(I); 2455 } 2456 2457 void Verifier::visitSExtInst(SExtInst &I) { 2458 // Get the source and destination types 2459 Type *SrcTy = I.getOperand(0)->getType(); 2460 Type *DestTy = I.getType(); 2461 2462 // Get the size of the types in bits, we'll need this later 2463 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); 2464 unsigned DestBitSize = DestTy->getScalarSizeInBits(); 2465 2466 Assert(SrcTy->isIntOrIntVectorTy(), "SExt only operates on integer", &I); 2467 Assert(DestTy->isIntOrIntVectorTy(), "SExt only produces an integer", &I); 2468 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), 2469 "sext source and destination must both be a vector or neither", &I); 2470 Assert(SrcBitSize < DestBitSize, "Type too small for SExt", &I); 2471 2472 visitInstruction(I); 2473 } 2474 2475 void Verifier::visitFPTruncInst(FPTruncInst &I) { 2476 // Get the source and destination types 2477 Type *SrcTy = I.getOperand(0)->getType(); 2478 Type *DestTy = I.getType(); 2479 // Get the size of the types in bits, we'll need this later 2480 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); 2481 unsigned DestBitSize = DestTy->getScalarSizeInBits(); 2482 2483 Assert(SrcTy->isFPOrFPVectorTy(), "FPTrunc only operates on FP", &I); 2484 Assert(DestTy->isFPOrFPVectorTy(), "FPTrunc only produces an FP", &I); 2485 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), 2486 "fptrunc source and destination must both be a vector or neither", &I); 2487 Assert(SrcBitSize > DestBitSize, "DestTy too big for FPTrunc", &I); 2488 2489 visitInstruction(I); 2490 } 2491 2492 void Verifier::visitFPExtInst(FPExtInst &I) { 2493 // Get the source and destination types 2494 Type *SrcTy = I.getOperand(0)->getType(); 2495 Type *DestTy = I.getType(); 2496 2497 // Get the size of the types in bits, we'll need this later 2498 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); 2499 unsigned DestBitSize = DestTy->getScalarSizeInBits(); 2500 2501 Assert(SrcTy->isFPOrFPVectorTy(), "FPExt only operates on FP", &I); 2502 Assert(DestTy->isFPOrFPVectorTy(), "FPExt only produces an FP", &I); 2503 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), 2504 "fpext source and destination must both be a vector or neither", &I); 2505 Assert(SrcBitSize < DestBitSize, "DestTy too small for FPExt", &I); 2506 2507 visitInstruction(I); 2508 } 2509 2510 void Verifier::visitUIToFPInst(UIToFPInst &I) { 2511 // Get the source and destination types 2512 Type *SrcTy = I.getOperand(0)->getType(); 2513 Type *DestTy = I.getType(); 2514 2515 bool SrcVec = SrcTy->isVectorTy(); 2516 bool DstVec = DestTy->isVectorTy(); 2517 2518 Assert(SrcVec == DstVec, 2519 "UIToFP source and dest must both be vector or scalar", &I); 2520 Assert(SrcTy->isIntOrIntVectorTy(), 2521 "UIToFP source must be integer or integer vector", &I); 2522 Assert(DestTy->isFPOrFPVectorTy(), "UIToFP result must be FP or FP vector", 2523 &I); 2524 2525 if (SrcVec && DstVec) 2526 Assert(cast<VectorType>(SrcTy)->getNumElements() == 2527 cast<VectorType>(DestTy)->getNumElements(), 2528 "UIToFP source and dest vector length mismatch", &I); 2529 2530 visitInstruction(I); 2531 } 2532 2533 void Verifier::visitSIToFPInst(SIToFPInst &I) { 2534 // Get the source and destination types 2535 Type *SrcTy = I.getOperand(0)->getType(); 2536 Type *DestTy = I.getType(); 2537 2538 bool SrcVec = SrcTy->isVectorTy(); 2539 bool DstVec = DestTy->isVectorTy(); 2540 2541 Assert(SrcVec == DstVec, 2542 "SIToFP source and dest must both be vector or scalar", &I); 2543 Assert(SrcTy->isIntOrIntVectorTy(), 2544 "SIToFP source must be integer or integer vector", &I); 2545 Assert(DestTy->isFPOrFPVectorTy(), "SIToFP result must be FP or FP vector", 2546 &I); 2547 2548 if (SrcVec && DstVec) 2549 Assert(cast<VectorType>(SrcTy)->getNumElements() == 2550 cast<VectorType>(DestTy)->getNumElements(), 2551 "SIToFP source and dest vector length mismatch", &I); 2552 2553 visitInstruction(I); 2554 } 2555 2556 void Verifier::visitFPToUIInst(FPToUIInst &I) { 2557 // Get the source and destination types 2558 Type *SrcTy = I.getOperand(0)->getType(); 2559 Type *DestTy = I.getType(); 2560 2561 bool SrcVec = SrcTy->isVectorTy(); 2562 bool DstVec = DestTy->isVectorTy(); 2563 2564 Assert(SrcVec == DstVec, 2565 "FPToUI source and dest must both be vector or scalar", &I); 2566 Assert(SrcTy->isFPOrFPVectorTy(), "FPToUI source must be FP or FP vector", 2567 &I); 2568 Assert(DestTy->isIntOrIntVectorTy(), 2569 "FPToUI result must be integer or integer vector", &I); 2570 2571 if (SrcVec && DstVec) 2572 Assert(cast<VectorType>(SrcTy)->getNumElements() == 2573 cast<VectorType>(DestTy)->getNumElements(), 2574 "FPToUI source and dest vector length mismatch", &I); 2575 2576 visitInstruction(I); 2577 } 2578 2579 void Verifier::visitFPToSIInst(FPToSIInst &I) { 2580 // Get the source and destination types 2581 Type *SrcTy = I.getOperand(0)->getType(); 2582 Type *DestTy = I.getType(); 2583 2584 bool SrcVec = SrcTy->isVectorTy(); 2585 bool DstVec = DestTy->isVectorTy(); 2586 2587 Assert(SrcVec == DstVec, 2588 "FPToSI source and dest must both be vector or scalar", &I); 2589 Assert(SrcTy->isFPOrFPVectorTy(), "FPToSI source must be FP or FP vector", 2590 &I); 2591 Assert(DestTy->isIntOrIntVectorTy(), 2592 "FPToSI result must be integer or integer vector", &I); 2593 2594 if (SrcVec && DstVec) 2595 Assert(cast<VectorType>(SrcTy)->getNumElements() == 2596 cast<VectorType>(DestTy)->getNumElements(), 2597 "FPToSI source and dest vector length mismatch", &I); 2598 2599 visitInstruction(I); 2600 } 2601 2602 void Verifier::visitPtrToIntInst(PtrToIntInst &I) { 2603 // Get the source and destination types 2604 Type *SrcTy = I.getOperand(0)->getType(); 2605 Type *DestTy = I.getType(); 2606 2607 Assert(SrcTy->isPtrOrPtrVectorTy(), "PtrToInt source must be pointer", &I); 2608 2609 if (auto *PTy = dyn_cast<PointerType>(SrcTy->getScalarType())) 2610 Assert(!DL.isNonIntegralPointerType(PTy), 2611 "ptrtoint not supported for non-integral pointers"); 2612 2613 Assert(DestTy->isIntOrIntVectorTy(), "PtrToInt result must be integral", &I); 2614 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), "PtrToInt type mismatch", 2615 &I); 2616 2617 if (SrcTy->isVectorTy()) { 2618 VectorType *VSrc = dyn_cast<VectorType>(SrcTy); 2619 VectorType *VDest = dyn_cast<VectorType>(DestTy); 2620 Assert(VSrc->getNumElements() == VDest->getNumElements(), 2621 "PtrToInt Vector width mismatch", &I); 2622 } 2623 2624 visitInstruction(I); 2625 } 2626 2627 void Verifier::visitIntToPtrInst(IntToPtrInst &I) { 2628 // Get the source and destination types 2629 Type *SrcTy = I.getOperand(0)->getType(); 2630 Type *DestTy = I.getType(); 2631 2632 Assert(SrcTy->isIntOrIntVectorTy(), 2633 "IntToPtr source must be an integral", &I); 2634 Assert(DestTy->isPtrOrPtrVectorTy(), "IntToPtr result must be a pointer", &I); 2635 2636 if (auto *PTy = dyn_cast<PointerType>(DestTy->getScalarType())) 2637 Assert(!DL.isNonIntegralPointerType(PTy), 2638 "inttoptr not supported for non-integral pointers"); 2639 2640 Assert(SrcTy->isVectorTy() == DestTy->isVectorTy(), "IntToPtr type mismatch", 2641 &I); 2642 if (SrcTy->isVectorTy()) { 2643 VectorType *VSrc = dyn_cast<VectorType>(SrcTy); 2644 VectorType *VDest = dyn_cast<VectorType>(DestTy); 2645 Assert(VSrc->getNumElements() == VDest->getNumElements(), 2646 "IntToPtr Vector width mismatch", &I); 2647 } 2648 visitInstruction(I); 2649 } 2650 2651 void Verifier::visitBitCastInst(BitCastInst &I) { 2652 Assert( 2653 CastInst::castIsValid(Instruction::BitCast, I.getOperand(0), I.getType()), 2654 "Invalid bitcast", &I); 2655 visitInstruction(I); 2656 } 2657 2658 void Verifier::visitAddrSpaceCastInst(AddrSpaceCastInst &I) { 2659 Type *SrcTy = I.getOperand(0)->getType(); 2660 Type *DestTy = I.getType(); 2661 2662 Assert(SrcTy->isPtrOrPtrVectorTy(), "AddrSpaceCast source must be a pointer", 2663 &I); 2664 Assert(DestTy->isPtrOrPtrVectorTy(), "AddrSpaceCast result must be a pointer", 2665 &I); 2666 Assert(SrcTy->getPointerAddressSpace() != DestTy->getPointerAddressSpace(), 2667 "AddrSpaceCast must be between different address spaces", &I); 2668 if (SrcTy->isVectorTy()) 2669 Assert(SrcTy->getVectorNumElements() == DestTy->getVectorNumElements(), 2670 "AddrSpaceCast vector pointer number of elements mismatch", &I); 2671 visitInstruction(I); 2672 } 2673 2674 /// visitPHINode - Ensure that a PHI node is well formed. 2675 /// 2676 void Verifier::visitPHINode(PHINode &PN) { 2677 // Ensure that the PHI nodes are all grouped together at the top of the block. 2678 // This can be tested by checking whether the instruction before this is 2679 // either nonexistent (because this is begin()) or is a PHI node. If not, 2680 // then there is some other instruction before a PHI. 2681 Assert(&PN == &PN.getParent()->front() || 2682 isa<PHINode>(--BasicBlock::iterator(&PN)), 2683 "PHI nodes not grouped at top of basic block!", &PN, PN.getParent()); 2684 2685 // Check that a PHI doesn't yield a Token. 2686 Assert(!PN.getType()->isTokenTy(), "PHI nodes cannot have token type!"); 2687 2688 // Check that all of the values of the PHI node have the same type as the 2689 // result, and that the incoming blocks are really basic blocks. 2690 for (Value *IncValue : PN.incoming_values()) { 2691 Assert(PN.getType() == IncValue->getType(), 2692 "PHI node operands are not the same type as the result!", &PN); 2693 } 2694 2695 // All other PHI node constraints are checked in the visitBasicBlock method. 2696 2697 visitInstruction(PN); 2698 } 2699 2700 void Verifier::verifyCallSite(CallSite CS) { 2701 Instruction *I = CS.getInstruction(); 2702 2703 Assert(CS.getCalledValue()->getType()->isPointerTy(), 2704 "Called function must be a pointer!", I); 2705 PointerType *FPTy = cast<PointerType>(CS.getCalledValue()->getType()); 2706 2707 Assert(FPTy->getElementType()->isFunctionTy(), 2708 "Called function is not pointer to function type!", I); 2709 2710 Assert(FPTy->getElementType() == CS.getFunctionType(), 2711 "Called function is not the same type as the call!", I); 2712 2713 FunctionType *FTy = CS.getFunctionType(); 2714 2715 // Verify that the correct number of arguments are being passed 2716 if (FTy->isVarArg()) 2717 Assert(CS.arg_size() >= FTy->getNumParams(), 2718 "Called function requires more parameters than were provided!", I); 2719 else 2720 Assert(CS.arg_size() == FTy->getNumParams(), 2721 "Incorrect number of arguments passed to called function!", I); 2722 2723 // Verify that all arguments to the call match the function type. 2724 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) 2725 Assert(CS.getArgument(i)->getType() == FTy->getParamType(i), 2726 "Call parameter type does not match function signature!", 2727 CS.getArgument(i), FTy->getParamType(i), I); 2728 2729 AttributeList Attrs = CS.getAttributes(); 2730 2731 Assert(verifyAttributeCount(Attrs, CS.arg_size()), 2732 "Attribute after last parameter!", I); 2733 2734 if (Attrs.hasAttribute(AttributeList::FunctionIndex, Attribute::Speculatable)) { 2735 // Don't allow speculatable on call sites, unless the underlying function 2736 // declaration is also speculatable. 2737 Function *Callee 2738 = dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts()); 2739 Assert(Callee && Callee->isSpeculatable(), 2740 "speculatable attribute may not apply to call sites", I); 2741 } 2742 2743 // Verify call attributes. 2744 verifyFunctionAttrs(FTy, Attrs, I); 2745 2746 // Conservatively check the inalloca argument. 2747 // We have a bug if we can find that there is an underlying alloca without 2748 // inalloca. 2749 if (CS.hasInAllocaArgument()) { 2750 Value *InAllocaArg = CS.getArgument(FTy->getNumParams() - 1); 2751 if (auto AI = dyn_cast<AllocaInst>(InAllocaArg->stripInBoundsOffsets())) 2752 Assert(AI->isUsedWithInAlloca(), 2753 "inalloca argument for call has mismatched alloca", AI, I); 2754 } 2755 2756 // For each argument of the callsite, if it has the swifterror argument, 2757 // make sure the underlying alloca/parameter it comes from has a swifterror as 2758 // well. 2759 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) 2760 if (CS.paramHasAttr(i, Attribute::SwiftError)) { 2761 Value *SwiftErrorArg = CS.getArgument(i); 2762 if (auto AI = dyn_cast<AllocaInst>(SwiftErrorArg->stripInBoundsOffsets())) { 2763 Assert(AI->isSwiftError(), 2764 "swifterror argument for call has mismatched alloca", AI, I); 2765 continue; 2766 } 2767 auto ArgI = dyn_cast<Argument>(SwiftErrorArg); 2768 Assert(ArgI, "swifterror argument should come from an alloca or parameter", SwiftErrorArg, I); 2769 Assert(ArgI->hasSwiftErrorAttr(), 2770 "swifterror argument for call has mismatched parameter", ArgI, I); 2771 } 2772 2773 if (FTy->isVarArg()) { 2774 // FIXME? is 'nest' even legal here? 2775 bool SawNest = false; 2776 bool SawReturned = false; 2777 2778 for (unsigned Idx = 0; Idx < FTy->getNumParams(); ++Idx) { 2779 if (Attrs.hasParamAttribute(Idx, Attribute::Nest)) 2780 SawNest = true; 2781 if (Attrs.hasParamAttribute(Idx, Attribute::Returned)) 2782 SawReturned = true; 2783 } 2784 2785 // Check attributes on the varargs part. 2786 for (unsigned Idx = FTy->getNumParams(); Idx < CS.arg_size(); ++Idx) { 2787 Type *Ty = CS.getArgument(Idx)->getType(); 2788 AttributeSet ArgAttrs = Attrs.getParamAttributes(Idx); 2789 verifyParameterAttrs(ArgAttrs, Ty, I); 2790 2791 if (ArgAttrs.hasAttribute(Attribute::Nest)) { 2792 Assert(!SawNest, "More than one parameter has attribute nest!", I); 2793 SawNest = true; 2794 } 2795 2796 if (ArgAttrs.hasAttribute(Attribute::Returned)) { 2797 Assert(!SawReturned, "More than one parameter has attribute returned!", 2798 I); 2799 Assert(Ty->canLosslesslyBitCastTo(FTy->getReturnType()), 2800 "Incompatible argument and return types for 'returned' " 2801 "attribute", 2802 I); 2803 SawReturned = true; 2804 } 2805 2806 Assert(!ArgAttrs.hasAttribute(Attribute::StructRet), 2807 "Attribute 'sret' cannot be used for vararg call arguments!", I); 2808 2809 if (ArgAttrs.hasAttribute(Attribute::InAlloca)) 2810 Assert(Idx == CS.arg_size() - 1, "inalloca isn't on the last argument!", 2811 I); 2812 } 2813 } 2814 2815 // Verify that there's no metadata unless it's a direct call to an intrinsic. 2816 if (CS.getCalledFunction() == nullptr || 2817 !CS.getCalledFunction()->getName().startswith("llvm.")) { 2818 for (Type *ParamTy : FTy->params()) { 2819 Assert(!ParamTy->isMetadataTy(), 2820 "Function has metadata parameter but isn't an intrinsic", I); 2821 Assert(!ParamTy->isTokenTy(), 2822 "Function has token parameter but isn't an intrinsic", I); 2823 } 2824 } 2825 2826 // Verify that indirect calls don't return tokens. 2827 if (CS.getCalledFunction() == nullptr) 2828 Assert(!FTy->getReturnType()->isTokenTy(), 2829 "Return type cannot be token for indirect call!"); 2830 2831 if (Function *F = CS.getCalledFunction()) 2832 if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID()) 2833 visitIntrinsicCallSite(ID, CS); 2834 2835 // Verify that a callsite has at most one "deopt", at most one "funclet" and 2836 // at most one "gc-transition" operand bundle. 2837 bool FoundDeoptBundle = false, FoundFuncletBundle = false, 2838 FoundGCTransitionBundle = false; 2839 for (unsigned i = 0, e = CS.getNumOperandBundles(); i < e; ++i) { 2840 OperandBundleUse BU = CS.getOperandBundleAt(i); 2841 uint32_t Tag = BU.getTagID(); 2842 if (Tag == LLVMContext::OB_deopt) { 2843 Assert(!FoundDeoptBundle, "Multiple deopt operand bundles", I); 2844 FoundDeoptBundle = true; 2845 } else if (Tag == LLVMContext::OB_gc_transition) { 2846 Assert(!FoundGCTransitionBundle, "Multiple gc-transition operand bundles", 2847 I); 2848 FoundGCTransitionBundle = true; 2849 } else if (Tag == LLVMContext::OB_funclet) { 2850 Assert(!FoundFuncletBundle, "Multiple funclet operand bundles", I); 2851 FoundFuncletBundle = true; 2852 Assert(BU.Inputs.size() == 1, 2853 "Expected exactly one funclet bundle operand", I); 2854 Assert(isa<FuncletPadInst>(BU.Inputs.front()), 2855 "Funclet bundle operands should correspond to a FuncletPadInst", 2856 I); 2857 } 2858 } 2859 2860 // Verify that each inlinable callsite of a debug-info-bearing function in a 2861 // debug-info-bearing function has a debug location attached to it. Failure to 2862 // do so causes assertion failures when the inliner sets up inline scope info. 2863 if (I->getFunction()->getSubprogram() && CS.getCalledFunction() && 2864 CS.getCalledFunction()->getSubprogram()) 2865 AssertDI(I->getDebugLoc(), "inlinable function call in a function with " 2866 "debug info must have a !dbg location", 2867 I); 2868 2869 visitInstruction(*I); 2870 } 2871 2872 /// Two types are "congruent" if they are identical, or if they are both pointer 2873 /// types with different pointee types and the same address space. 2874 static bool isTypeCongruent(Type *L, Type *R) { 2875 if (L == R) 2876 return true; 2877 PointerType *PL = dyn_cast<PointerType>(L); 2878 PointerType *PR = dyn_cast<PointerType>(R); 2879 if (!PL || !PR) 2880 return false; 2881 return PL->getAddressSpace() == PR->getAddressSpace(); 2882 } 2883 2884 static AttrBuilder getParameterABIAttributes(int I, AttributeList Attrs) { 2885 static const Attribute::AttrKind ABIAttrs[] = { 2886 Attribute::StructRet, Attribute::ByVal, Attribute::InAlloca, 2887 Attribute::InReg, Attribute::Returned, Attribute::SwiftSelf, 2888 Attribute::SwiftError}; 2889 AttrBuilder Copy; 2890 for (auto AK : ABIAttrs) { 2891 if (Attrs.hasParamAttribute(I, AK)) 2892 Copy.addAttribute(AK); 2893 } 2894 if (Attrs.hasParamAttribute(I, Attribute::Alignment)) 2895 Copy.addAlignmentAttr(Attrs.getParamAlignment(I)); 2896 return Copy; 2897 } 2898 2899 void Verifier::verifyMustTailCall(CallInst &CI) { 2900 Assert(!CI.isInlineAsm(), "cannot use musttail call with inline asm", &CI); 2901 2902 // - The caller and callee prototypes must match. Pointer types of 2903 // parameters or return types may differ in pointee type, but not 2904 // address space. 2905 Function *F = CI.getParent()->getParent(); 2906 FunctionType *CallerTy = F->getFunctionType(); 2907 FunctionType *CalleeTy = CI.getFunctionType(); 2908 if (!CI.getCalledFunction() || !CI.getCalledFunction()->isIntrinsic()) { 2909 Assert(CallerTy->getNumParams() == CalleeTy->getNumParams(), 2910 "cannot guarantee tail call due to mismatched parameter counts", 2911 &CI); 2912 for (int I = 0, E = CallerTy->getNumParams(); I != E; ++I) { 2913 Assert( 2914 isTypeCongruent(CallerTy->getParamType(I), CalleeTy->getParamType(I)), 2915 "cannot guarantee tail call due to mismatched parameter types", &CI); 2916 } 2917 } 2918 Assert(CallerTy->isVarArg() == CalleeTy->isVarArg(), 2919 "cannot guarantee tail call due to mismatched varargs", &CI); 2920 Assert(isTypeCongruent(CallerTy->getReturnType(), CalleeTy->getReturnType()), 2921 "cannot guarantee tail call due to mismatched return types", &CI); 2922 2923 // - The calling conventions of the caller and callee must match. 2924 Assert(F->getCallingConv() == CI.getCallingConv(), 2925 "cannot guarantee tail call due to mismatched calling conv", &CI); 2926 2927 // - All ABI-impacting function attributes, such as sret, byval, inreg, 2928 // returned, and inalloca, must match. 2929 AttributeList CallerAttrs = F->getAttributes(); 2930 AttributeList CalleeAttrs = CI.getAttributes(); 2931 for (int I = 0, E = CallerTy->getNumParams(); I != E; ++I) { 2932 AttrBuilder CallerABIAttrs = getParameterABIAttributes(I, CallerAttrs); 2933 AttrBuilder CalleeABIAttrs = getParameterABIAttributes(I, CalleeAttrs); 2934 Assert(CallerABIAttrs == CalleeABIAttrs, 2935 "cannot guarantee tail call due to mismatched ABI impacting " 2936 "function attributes", 2937 &CI, CI.getOperand(I)); 2938 } 2939 2940 // - The call must immediately precede a :ref:`ret <i_ret>` instruction, 2941 // or a pointer bitcast followed by a ret instruction. 2942 // - The ret instruction must return the (possibly bitcasted) value 2943 // produced by the call or void. 2944 Value *RetVal = &CI; 2945 Instruction *Next = CI.getNextNode(); 2946 2947 // Handle the optional bitcast. 2948 if (BitCastInst *BI = dyn_cast_or_null<BitCastInst>(Next)) { 2949 Assert(BI->getOperand(0) == RetVal, 2950 "bitcast following musttail call must use the call", BI); 2951 RetVal = BI; 2952 Next = BI->getNextNode(); 2953 } 2954 2955 // Check the return. 2956 ReturnInst *Ret = dyn_cast_or_null<ReturnInst>(Next); 2957 Assert(Ret, "musttail call must precede a ret with an optional bitcast", 2958 &CI); 2959 Assert(!Ret->getReturnValue() || Ret->getReturnValue() == RetVal, 2960 "musttail call result must be returned", Ret); 2961 } 2962 2963 void Verifier::visitCallInst(CallInst &CI) { 2964 verifyCallSite(&CI); 2965 2966 if (CI.isMustTailCall()) 2967 verifyMustTailCall(CI); 2968 } 2969 2970 void Verifier::visitInvokeInst(InvokeInst &II) { 2971 verifyCallSite(&II); 2972 2973 // Verify that the first non-PHI instruction of the unwind destination is an 2974 // exception handling instruction. 2975 Assert( 2976 II.getUnwindDest()->isEHPad(), 2977 "The unwind destination does not have an exception handling instruction!", 2978 &II); 2979 2980 visitTerminatorInst(II); 2981 } 2982 2983 /// visitBinaryOperator - Check that both arguments to the binary operator are 2984 /// of the same type! 2985 /// 2986 void Verifier::visitBinaryOperator(BinaryOperator &B) { 2987 Assert(B.getOperand(0)->getType() == B.getOperand(1)->getType(), 2988 "Both operands to a binary operator are not of the same type!", &B); 2989 2990 switch (B.getOpcode()) { 2991 // Check that integer arithmetic operators are only used with 2992 // integral operands. 2993 case Instruction::Add: 2994 case Instruction::Sub: 2995 case Instruction::Mul: 2996 case Instruction::SDiv: 2997 case Instruction::UDiv: 2998 case Instruction::SRem: 2999 case Instruction::URem: 3000 Assert(B.getType()->isIntOrIntVectorTy(), 3001 "Integer arithmetic operators only work with integral types!", &B); 3002 Assert(B.getType() == B.getOperand(0)->getType(), 3003 "Integer arithmetic operators must have same type " 3004 "for operands and result!", 3005 &B); 3006 break; 3007 // Check that floating-point arithmetic operators are only used with 3008 // floating-point operands. 3009 case Instruction::FAdd: 3010 case Instruction::FSub: 3011 case Instruction::FMul: 3012 case Instruction::FDiv: 3013 case Instruction::FRem: 3014 Assert(B.getType()->isFPOrFPVectorTy(), 3015 "Floating-point arithmetic operators only work with " 3016 "floating-point types!", 3017 &B); 3018 Assert(B.getType() == B.getOperand(0)->getType(), 3019 "Floating-point arithmetic operators must have same type " 3020 "for operands and result!", 3021 &B); 3022 break; 3023 // Check that logical operators are only used with integral operands. 3024 case Instruction::And: 3025 case Instruction::Or: 3026 case Instruction::Xor: 3027 Assert(B.getType()->isIntOrIntVectorTy(), 3028 "Logical operators only work with integral types!", &B); 3029 Assert(B.getType() == B.getOperand(0)->getType(), 3030 "Logical operators must have same type for operands and result!", 3031 &B); 3032 break; 3033 case Instruction::Shl: 3034 case Instruction::LShr: 3035 case Instruction::AShr: 3036 Assert(B.getType()->isIntOrIntVectorTy(), 3037 "Shifts only work with integral types!", &B); 3038 Assert(B.getType() == B.getOperand(0)->getType(), 3039 "Shift return type must be same as operands!", &B); 3040 break; 3041 default: 3042 llvm_unreachable("Unknown BinaryOperator opcode!"); 3043 } 3044 3045 visitInstruction(B); 3046 } 3047 3048 void Verifier::visitICmpInst(ICmpInst &IC) { 3049 // Check that the operands are the same type 3050 Type *Op0Ty = IC.getOperand(0)->getType(); 3051 Type *Op1Ty = IC.getOperand(1)->getType(); 3052 Assert(Op0Ty == Op1Ty, 3053 "Both operands to ICmp instruction are not of the same type!", &IC); 3054 // Check that the operands are the right type 3055 Assert(Op0Ty->isIntOrIntVectorTy() || Op0Ty->isPtrOrPtrVectorTy(), 3056 "Invalid operand types for ICmp instruction", &IC); 3057 // Check that the predicate is valid. 3058 Assert(IC.isIntPredicate(), 3059 "Invalid predicate in ICmp instruction!", &IC); 3060 3061 visitInstruction(IC); 3062 } 3063 3064 void Verifier::visitFCmpInst(FCmpInst &FC) { 3065 // Check that the operands are the same type 3066 Type *Op0Ty = FC.getOperand(0)->getType(); 3067 Type *Op1Ty = FC.getOperand(1)->getType(); 3068 Assert(Op0Ty == Op1Ty, 3069 "Both operands to FCmp instruction are not of the same type!", &FC); 3070 // Check that the operands are the right type 3071 Assert(Op0Ty->isFPOrFPVectorTy(), 3072 "Invalid operand types for FCmp instruction", &FC); 3073 // Check that the predicate is valid. 3074 Assert(FC.isFPPredicate(), 3075 "Invalid predicate in FCmp instruction!", &FC); 3076 3077 visitInstruction(FC); 3078 } 3079 3080 void Verifier::visitExtractElementInst(ExtractElementInst &EI) { 3081 Assert( 3082 ExtractElementInst::isValidOperands(EI.getOperand(0), EI.getOperand(1)), 3083 "Invalid extractelement operands!", &EI); 3084 visitInstruction(EI); 3085 } 3086 3087 void Verifier::visitInsertElementInst(InsertElementInst &IE) { 3088 Assert(InsertElementInst::isValidOperands(IE.getOperand(0), IE.getOperand(1), 3089 IE.getOperand(2)), 3090 "Invalid insertelement operands!", &IE); 3091 visitInstruction(IE); 3092 } 3093 3094 void Verifier::visitShuffleVectorInst(ShuffleVectorInst &SV) { 3095 Assert(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1), 3096 SV.getOperand(2)), 3097 "Invalid shufflevector operands!", &SV); 3098 visitInstruction(SV); 3099 } 3100 3101 void Verifier::visitGetElementPtrInst(GetElementPtrInst &GEP) { 3102 Type *TargetTy = GEP.getPointerOperandType()->getScalarType(); 3103 3104 Assert(isa<PointerType>(TargetTy), 3105 "GEP base pointer is not a vector or a vector of pointers", &GEP); 3106 Assert(GEP.getSourceElementType()->isSized(), "GEP into unsized type!", &GEP); 3107 3108 SmallVector<Value*, 16> Idxs(GEP.idx_begin(), GEP.idx_end()); 3109 Assert(all_of( 3110 Idxs, [](Value* V) { return V->getType()->isIntOrIntVectorTy(); }), 3111 "GEP indexes must be integers", &GEP); 3112 Type *ElTy = 3113 GetElementPtrInst::getIndexedType(GEP.getSourceElementType(), Idxs); 3114 Assert(ElTy, "Invalid indices for GEP pointer type!", &GEP); 3115 3116 Assert(GEP.getType()->isPtrOrPtrVectorTy() && 3117 GEP.getResultElementType() == ElTy, 3118 "GEP is not of right type for indices!", &GEP, ElTy); 3119 3120 if (GEP.getType()->isVectorTy()) { 3121 // Additional checks for vector GEPs. 3122 unsigned GEPWidth = GEP.getType()->getVectorNumElements(); 3123 if (GEP.getPointerOperandType()->isVectorTy()) 3124 Assert(GEPWidth == GEP.getPointerOperandType()->getVectorNumElements(), 3125 "Vector GEP result width doesn't match operand's", &GEP); 3126 for (Value *Idx : Idxs) { 3127 Type *IndexTy = Idx->getType(); 3128 if (IndexTy->isVectorTy()) { 3129 unsigned IndexWidth = IndexTy->getVectorNumElements(); 3130 Assert(IndexWidth == GEPWidth, "Invalid GEP index vector width", &GEP); 3131 } 3132 Assert(IndexTy->isIntOrIntVectorTy(), 3133 "All GEP indices should be of integer type"); 3134 } 3135 } 3136 visitInstruction(GEP); 3137 } 3138 3139 static bool isContiguous(const ConstantRange &A, const ConstantRange &B) { 3140 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); 3141 } 3142 3143 void Verifier::visitRangeMetadata(Instruction &I, MDNode *Range, Type *Ty) { 3144 assert(Range && Range == I.getMetadata(LLVMContext::MD_range) && 3145 "precondition violation"); 3146 3147 unsigned NumOperands = Range->getNumOperands(); 3148 Assert(NumOperands % 2 == 0, "Unfinished range!", Range); 3149 unsigned NumRanges = NumOperands / 2; 3150 Assert(NumRanges >= 1, "It should have at least one range!", Range); 3151 3152 ConstantRange LastRange(1); // Dummy initial value 3153 for (unsigned i = 0; i < NumRanges; ++i) { 3154 ConstantInt *Low = 3155 mdconst::dyn_extract<ConstantInt>(Range->getOperand(2 * i)); 3156 Assert(Low, "The lower limit must be an integer!", Low); 3157 ConstantInt *High = 3158 mdconst::dyn_extract<ConstantInt>(Range->getOperand(2 * i + 1)); 3159 Assert(High, "The upper limit must be an integer!", High); 3160 Assert(High->getType() == Low->getType() && High->getType() == Ty, 3161 "Range types must match instruction type!", &I); 3162 3163 APInt HighV = High->getValue(); 3164 APInt LowV = Low->getValue(); 3165 ConstantRange CurRange(LowV, HighV); 3166 Assert(!CurRange.isEmptySet() && !CurRange.isFullSet(), 3167 "Range must not be empty!", Range); 3168 if (i != 0) { 3169 Assert(CurRange.intersectWith(LastRange).isEmptySet(), 3170 "Intervals are overlapping", Range); 3171 Assert(LowV.sgt(LastRange.getLower()), "Intervals are not in order", 3172 Range); 3173 Assert(!isContiguous(CurRange, LastRange), "Intervals are contiguous", 3174 Range); 3175 } 3176 LastRange = ConstantRange(LowV, HighV); 3177 } 3178 if (NumRanges > 2) { 3179 APInt FirstLow = 3180 mdconst::dyn_extract<ConstantInt>(Range->getOperand(0))->getValue(); 3181 APInt FirstHigh = 3182 mdconst::dyn_extract<ConstantInt>(Range->getOperand(1))->getValue(); 3183 ConstantRange FirstRange(FirstLow, FirstHigh); 3184 Assert(FirstRange.intersectWith(LastRange).isEmptySet(), 3185 "Intervals are overlapping", Range); 3186 Assert(!isContiguous(FirstRange, LastRange), "Intervals are contiguous", 3187 Range); 3188 } 3189 } 3190 3191 void Verifier::checkAtomicMemAccessSize(Type *Ty, const Instruction *I) { 3192 unsigned Size = DL.getTypeSizeInBits(Ty); 3193 Assert(Size >= 8, "atomic memory access' size must be byte-sized", Ty, I); 3194 Assert(!(Size & (Size - 1)), 3195 "atomic memory access' operand must have a power-of-two size", Ty, I); 3196 } 3197 3198 void Verifier::visitLoadInst(LoadInst &LI) { 3199 PointerType *PTy = dyn_cast<PointerType>(LI.getOperand(0)->getType()); 3200 Assert(PTy, "Load operand must be a pointer.", &LI); 3201 Type *ElTy = LI.getType(); 3202 Assert(LI.getAlignment() <= Value::MaximumAlignment, 3203 "huge alignment values are unsupported", &LI); 3204 Assert(ElTy->isSized(), "loading unsized types is not allowed", &LI); 3205 if (LI.isAtomic()) { 3206 Assert(LI.getOrdering() != AtomicOrdering::Release && 3207 LI.getOrdering() != AtomicOrdering::AcquireRelease, 3208 "Load cannot have Release ordering", &LI); 3209 Assert(LI.getAlignment() != 0, 3210 "Atomic load must specify explicit alignment", &LI); 3211 Assert(ElTy->isIntOrPtrTy() || ElTy->isFloatingPointTy(), 3212 "atomic load operand must have integer, pointer, or floating point " 3213 "type!", 3214 ElTy, &LI); 3215 checkAtomicMemAccessSize(ElTy, &LI); 3216 } else { 3217 Assert(LI.getSyncScopeID() == SyncScope::System, 3218 "Non-atomic load cannot have SynchronizationScope specified", &LI); 3219 } 3220 3221 visitInstruction(LI); 3222 } 3223 3224 void Verifier::visitStoreInst(StoreInst &SI) { 3225 PointerType *PTy = dyn_cast<PointerType>(SI.getOperand(1)->getType()); 3226 Assert(PTy, "Store operand must be a pointer.", &SI); 3227 Type *ElTy = PTy->getElementType(); 3228 Assert(ElTy == SI.getOperand(0)->getType(), 3229 "Stored value type does not match pointer operand type!", &SI, ElTy); 3230 Assert(SI.getAlignment() <= Value::MaximumAlignment, 3231 "huge alignment values are unsupported", &SI); 3232 Assert(ElTy->isSized(), "storing unsized types is not allowed", &SI); 3233 if (SI.isAtomic()) { 3234 Assert(SI.getOrdering() != AtomicOrdering::Acquire && 3235 SI.getOrdering() != AtomicOrdering::AcquireRelease, 3236 "Store cannot have Acquire ordering", &SI); 3237 Assert(SI.getAlignment() != 0, 3238 "Atomic store must specify explicit alignment", &SI); 3239 Assert(ElTy->isIntOrPtrTy() || ElTy->isFloatingPointTy(), 3240 "atomic store operand must have integer, pointer, or floating point " 3241 "type!", 3242 ElTy, &SI); 3243 checkAtomicMemAccessSize(ElTy, &SI); 3244 } else { 3245 Assert(SI.getSyncScopeID() == SyncScope::System, 3246 "Non-atomic store cannot have SynchronizationScope specified", &SI); 3247 } 3248 visitInstruction(SI); 3249 } 3250 3251 /// Check that SwiftErrorVal is used as a swifterror argument in CS. 3252 void Verifier::verifySwiftErrorCallSite(CallSite CS, 3253 const Value *SwiftErrorVal) { 3254 unsigned Idx = 0; 3255 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end(); 3256 I != E; ++I, ++Idx) { 3257 if (*I == SwiftErrorVal) { 3258 Assert(CS.paramHasAttr(Idx, Attribute::SwiftError), 3259 "swifterror value when used in a callsite should be marked " 3260 "with swifterror attribute", 3261 SwiftErrorVal, CS); 3262 } 3263 } 3264 } 3265 3266 void Verifier::verifySwiftErrorValue(const Value *SwiftErrorVal) { 3267 // Check that swifterror value is only used by loads, stores, or as 3268 // a swifterror argument. 3269 for (const User *U : SwiftErrorVal->users()) { 3270 Assert(isa<LoadInst>(U) || isa<StoreInst>(U) || isa<CallInst>(U) || 3271 isa<InvokeInst>(U), 3272 "swifterror value can only be loaded and stored from, or " 3273 "as a swifterror argument!", 3274 SwiftErrorVal, U); 3275 // If it is used by a store, check it is the second operand. 3276 if (auto StoreI = dyn_cast<StoreInst>(U)) 3277 Assert(StoreI->getOperand(1) == SwiftErrorVal, 3278 "swifterror value should be the second operand when used " 3279 "by stores", SwiftErrorVal, U); 3280 if (auto CallI = dyn_cast<CallInst>(U)) 3281 verifySwiftErrorCallSite(const_cast<CallInst*>(CallI), SwiftErrorVal); 3282 if (auto II = dyn_cast<InvokeInst>(U)) 3283 verifySwiftErrorCallSite(const_cast<InvokeInst*>(II), SwiftErrorVal); 3284 } 3285 } 3286 3287 void Verifier::visitAllocaInst(AllocaInst &AI) { 3288 SmallPtrSet<Type*, 4> Visited; 3289 PointerType *PTy = AI.getType(); 3290 // TODO: Relax this restriction? 3291 Assert(PTy->getAddressSpace() == DL.getAllocaAddrSpace(), 3292 "Allocation instruction pointer not in the stack address space!", 3293 &AI); 3294 Assert(AI.getAllocatedType()->isSized(&Visited), 3295 "Cannot allocate unsized type", &AI); 3296 Assert(AI.getArraySize()->getType()->isIntegerTy(), 3297 "Alloca array size must have integer type", &AI); 3298 Assert(AI.getAlignment() <= Value::MaximumAlignment, 3299 "huge alignment values are unsupported", &AI); 3300 3301 if (AI.isSwiftError()) { 3302 verifySwiftErrorValue(&AI); 3303 } 3304 3305 visitInstruction(AI); 3306 } 3307 3308 void Verifier::visitAtomicCmpXchgInst(AtomicCmpXchgInst &CXI) { 3309 3310 // FIXME: more conditions??? 3311 Assert(CXI.getSuccessOrdering() != AtomicOrdering::NotAtomic, 3312 "cmpxchg instructions must be atomic.", &CXI); 3313 Assert(CXI.getFailureOrdering() != AtomicOrdering::NotAtomic, 3314 "cmpxchg instructions must be atomic.", &CXI); 3315 Assert(CXI.getSuccessOrdering() != AtomicOrdering::Unordered, 3316 "cmpxchg instructions cannot be unordered.", &CXI); 3317 Assert(CXI.getFailureOrdering() != AtomicOrdering::Unordered, 3318 "cmpxchg instructions cannot be unordered.", &CXI); 3319 Assert(!isStrongerThan(CXI.getFailureOrdering(), CXI.getSuccessOrdering()), 3320 "cmpxchg instructions failure argument shall be no stronger than the " 3321 "success argument", 3322 &CXI); 3323 Assert(CXI.getFailureOrdering() != AtomicOrdering::Release && 3324 CXI.getFailureOrdering() != AtomicOrdering::AcquireRelease, 3325 "cmpxchg failure ordering cannot include release semantics", &CXI); 3326 3327 PointerType *PTy = dyn_cast<PointerType>(CXI.getOperand(0)->getType()); 3328 Assert(PTy, "First cmpxchg operand must be a pointer.", &CXI); 3329 Type *ElTy = PTy->getElementType(); 3330 Assert(ElTy->isIntOrPtrTy(), 3331 "cmpxchg operand must have integer or pointer type", ElTy, &CXI); 3332 checkAtomicMemAccessSize(ElTy, &CXI); 3333 Assert(ElTy == CXI.getOperand(1)->getType(), 3334 "Expected value type does not match pointer operand type!", &CXI, 3335 ElTy); 3336 Assert(ElTy == CXI.getOperand(2)->getType(), 3337 "Stored value type does not match pointer operand type!", &CXI, ElTy); 3338 visitInstruction(CXI); 3339 } 3340 3341 void Verifier::visitAtomicRMWInst(AtomicRMWInst &RMWI) { 3342 Assert(RMWI.getOrdering() != AtomicOrdering::NotAtomic, 3343 "atomicrmw instructions must be atomic.", &RMWI); 3344 Assert(RMWI.getOrdering() != AtomicOrdering::Unordered, 3345 "atomicrmw instructions cannot be unordered.", &RMWI); 3346 PointerType *PTy = dyn_cast<PointerType>(RMWI.getOperand(0)->getType()); 3347 Assert(PTy, "First atomicrmw operand must be a pointer.", &RMWI); 3348 Type *ElTy = PTy->getElementType(); 3349 Assert(ElTy->isIntegerTy(), "atomicrmw operand must have integer type!", 3350 &RMWI, ElTy); 3351 checkAtomicMemAccessSize(ElTy, &RMWI); 3352 Assert(ElTy == RMWI.getOperand(1)->getType(), 3353 "Argument value type does not match pointer operand type!", &RMWI, 3354 ElTy); 3355 Assert(AtomicRMWInst::FIRST_BINOP <= RMWI.getOperation() && 3356 RMWI.getOperation() <= AtomicRMWInst::LAST_BINOP, 3357 "Invalid binary operation!", &RMWI); 3358 visitInstruction(RMWI); 3359 } 3360 3361 void Verifier::visitFenceInst(FenceInst &FI) { 3362 const AtomicOrdering Ordering = FI.getOrdering(); 3363 Assert(Ordering == AtomicOrdering::Acquire || 3364 Ordering == AtomicOrdering::Release || 3365 Ordering == AtomicOrdering::AcquireRelease || 3366 Ordering == AtomicOrdering::SequentiallyConsistent, 3367 "fence instructions may only have acquire, release, acq_rel, or " 3368 "seq_cst ordering.", 3369 &FI); 3370 visitInstruction(FI); 3371 } 3372 3373 void Verifier::visitExtractValueInst(ExtractValueInst &EVI) { 3374 Assert(ExtractValueInst::getIndexedType(EVI.getAggregateOperand()->getType(), 3375 EVI.getIndices()) == EVI.getType(), 3376 "Invalid ExtractValueInst operands!", &EVI); 3377 3378 visitInstruction(EVI); 3379 } 3380 3381 void Verifier::visitInsertValueInst(InsertValueInst &IVI) { 3382 Assert(ExtractValueInst::getIndexedType(IVI.getAggregateOperand()->getType(), 3383 IVI.getIndices()) == 3384 IVI.getOperand(1)->getType(), 3385 "Invalid InsertValueInst operands!", &IVI); 3386 3387 visitInstruction(IVI); 3388 } 3389 3390 static Value *getParentPad(Value *EHPad) { 3391 if (auto *FPI = dyn_cast<FuncletPadInst>(EHPad)) 3392 return FPI->getParentPad(); 3393 3394 return cast<CatchSwitchInst>(EHPad)->getParentPad(); 3395 } 3396 3397 void Verifier::visitEHPadPredecessors(Instruction &I) { 3398 assert(I.isEHPad()); 3399 3400 BasicBlock *BB = I.getParent(); 3401 Function *F = BB->getParent(); 3402 3403 Assert(BB != &F->getEntryBlock(), "EH pad cannot be in entry block.", &I); 3404 3405 if (auto *LPI = dyn_cast<LandingPadInst>(&I)) { 3406 // The landingpad instruction defines its parent as a landing pad block. The 3407 // landing pad block may be branched to only by the unwind edge of an 3408 // invoke. 3409 for (BasicBlock *PredBB : predecessors(BB)) { 3410 const auto *II = dyn_cast<InvokeInst>(PredBB->getTerminator()); 3411 Assert(II && II->getUnwindDest() == BB && II->getNormalDest() != BB, 3412 "Block containing LandingPadInst must be jumped to " 3413 "only by the unwind edge of an invoke.", 3414 LPI); 3415 } 3416 return; 3417 } 3418 if (auto *CPI = dyn_cast<CatchPadInst>(&I)) { 3419 if (!pred_empty(BB)) 3420 Assert(BB->getUniquePredecessor() == CPI->getCatchSwitch()->getParent(), 3421 "Block containg CatchPadInst must be jumped to " 3422 "only by its catchswitch.", 3423 CPI); 3424 Assert(BB != CPI->getCatchSwitch()->getUnwindDest(), 3425 "Catchswitch cannot unwind to one of its catchpads", 3426 CPI->getCatchSwitch(), CPI); 3427 return; 3428 } 3429 3430 // Verify that each pred has a legal terminator with a legal to/from EH 3431 // pad relationship. 3432 Instruction *ToPad = &I; 3433 Value *ToPadParent = getParentPad(ToPad); 3434 for (BasicBlock *PredBB : predecessors(BB)) { 3435 TerminatorInst *TI = PredBB->getTerminator(); 3436 Value *FromPad; 3437 if (auto *II = dyn_cast<InvokeInst>(TI)) { 3438 Assert(II->getUnwindDest() == BB && II->getNormalDest() != BB, 3439 "EH pad must be jumped to via an unwind edge", ToPad, II); 3440 if (auto Bundle = II->getOperandBundle(LLVMContext::OB_funclet)) 3441 FromPad = Bundle->Inputs[0]; 3442 else 3443 FromPad = ConstantTokenNone::get(II->getContext()); 3444 } else if (auto *CRI = dyn_cast<CleanupReturnInst>(TI)) { 3445 FromPad = CRI->getOperand(0); 3446 Assert(FromPad != ToPadParent, "A cleanupret must exit its cleanup", CRI); 3447 } else if (auto *CSI = dyn_cast<CatchSwitchInst>(TI)) { 3448 FromPad = CSI; 3449 } else { 3450 Assert(false, "EH pad must be jumped to via an unwind edge", ToPad, TI); 3451 } 3452 3453 // The edge may exit from zero or more nested pads. 3454 SmallSet<Value *, 8> Seen; 3455 for (;; FromPad = getParentPad(FromPad)) { 3456 Assert(FromPad != ToPad, 3457 "EH pad cannot handle exceptions raised within it", FromPad, TI); 3458 if (FromPad == ToPadParent) { 3459 // This is a legal unwind edge. 3460 break; 3461 } 3462 Assert(!isa<ConstantTokenNone>(FromPad), 3463 "A single unwind edge may only enter one EH pad", TI); 3464 Assert(Seen.insert(FromPad).second, 3465 "EH pad jumps through a cycle of pads", FromPad); 3466 } 3467 } 3468 } 3469 3470 void Verifier::visitLandingPadInst(LandingPadInst &LPI) { 3471 // The landingpad instruction is ill-formed if it doesn't have any clauses and 3472 // isn't a cleanup. 3473 Assert(LPI.getNumClauses() > 0 || LPI.isCleanup(), 3474 "LandingPadInst needs at least one clause or to be a cleanup.", &LPI); 3475 3476 visitEHPadPredecessors(LPI); 3477 3478 if (!LandingPadResultTy) 3479 LandingPadResultTy = LPI.getType(); 3480 else 3481 Assert(LandingPadResultTy == LPI.getType(), 3482 "The landingpad instruction should have a consistent result type " 3483 "inside a function.", 3484 &LPI); 3485 3486 Function *F = LPI.getParent()->getParent(); 3487 Assert(F->hasPersonalityFn(), 3488 "LandingPadInst needs to be in a function with a personality.", &LPI); 3489 3490 // The landingpad instruction must be the first non-PHI instruction in the 3491 // block. 3492 Assert(LPI.getParent()->getLandingPadInst() == &LPI, 3493 "LandingPadInst not the first non-PHI instruction in the block.", 3494 &LPI); 3495 3496 for (unsigned i = 0, e = LPI.getNumClauses(); i < e; ++i) { 3497 Constant *Clause = LPI.getClause(i); 3498 if (LPI.isCatch(i)) { 3499 Assert(isa<PointerType>(Clause->getType()), 3500 "Catch operand does not have pointer type!", &LPI); 3501 } else { 3502 Assert(LPI.isFilter(i), "Clause is neither catch nor filter!", &LPI); 3503 Assert(isa<ConstantArray>(Clause) || isa<ConstantAggregateZero>(Clause), 3504 "Filter operand is not an array of constants!", &LPI); 3505 } 3506 } 3507 3508 visitInstruction(LPI); 3509 } 3510 3511 void Verifier::visitResumeInst(ResumeInst &RI) { 3512 Assert(RI.getFunction()->hasPersonalityFn(), 3513 "ResumeInst needs to be in a function with a personality.", &RI); 3514 3515 if (!LandingPadResultTy) 3516 LandingPadResultTy = RI.getValue()->getType(); 3517 else 3518 Assert(LandingPadResultTy == RI.getValue()->getType(), 3519 "The resume instruction should have a consistent result type " 3520 "inside a function.", 3521 &RI); 3522 3523 visitTerminatorInst(RI); 3524 } 3525 3526 void Verifier::visitCatchPadInst(CatchPadInst &CPI) { 3527 BasicBlock *BB = CPI.getParent(); 3528 3529 Function *F = BB->getParent(); 3530 Assert(F->hasPersonalityFn(), 3531 "CatchPadInst needs to be in a function with a personality.", &CPI); 3532 3533 Assert(isa<CatchSwitchInst>(CPI.getParentPad()), 3534 "CatchPadInst needs to be directly nested in a CatchSwitchInst.", 3535 CPI.getParentPad()); 3536 3537 // The catchpad instruction must be the first non-PHI instruction in the 3538 // block. 3539 Assert(BB->getFirstNonPHI() == &CPI, 3540 "CatchPadInst not the first non-PHI instruction in the block.", &CPI); 3541 3542 visitEHPadPredecessors(CPI); 3543 visitFuncletPadInst(CPI); 3544 } 3545 3546 void Verifier::visitCatchReturnInst(CatchReturnInst &CatchReturn) { 3547 Assert(isa<CatchPadInst>(CatchReturn.getOperand(0)), 3548 "CatchReturnInst needs to be provided a CatchPad", &CatchReturn, 3549 CatchReturn.getOperand(0)); 3550 3551 visitTerminatorInst(CatchReturn); 3552 } 3553 3554 void Verifier::visitCleanupPadInst(CleanupPadInst &CPI) { 3555 BasicBlock *BB = CPI.getParent(); 3556 3557 Function *F = BB->getParent(); 3558 Assert(F->hasPersonalityFn(), 3559 "CleanupPadInst needs to be in a function with a personality.", &CPI); 3560 3561 // The cleanuppad instruction must be the first non-PHI instruction in the 3562 // block. 3563 Assert(BB->getFirstNonPHI() == &CPI, 3564 "CleanupPadInst not the first non-PHI instruction in the block.", 3565 &CPI); 3566 3567 auto *ParentPad = CPI.getParentPad(); 3568 Assert(isa<ConstantTokenNone>(ParentPad) || isa<FuncletPadInst>(ParentPad), 3569 "CleanupPadInst has an invalid parent.", &CPI); 3570 3571 visitEHPadPredecessors(CPI); 3572 visitFuncletPadInst(CPI); 3573 } 3574 3575 void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) { 3576 User *FirstUser = nullptr; 3577 Value *FirstUnwindPad = nullptr; 3578 SmallVector<FuncletPadInst *, 8> Worklist({&FPI}); 3579 SmallSet<FuncletPadInst *, 8> Seen; 3580 3581 while (!Worklist.empty()) { 3582 FuncletPadInst *CurrentPad = Worklist.pop_back_val(); 3583 Assert(Seen.insert(CurrentPad).second, 3584 "FuncletPadInst must not be nested within itself", CurrentPad); 3585 Value *UnresolvedAncestorPad = nullptr; 3586 for (User *U : CurrentPad->users()) { 3587 BasicBlock *UnwindDest; 3588 if (auto *CRI = dyn_cast<CleanupReturnInst>(U)) { 3589 UnwindDest = CRI->getUnwindDest(); 3590 } else if (auto *CSI = dyn_cast<CatchSwitchInst>(U)) { 3591 // We allow catchswitch unwind to caller to nest 3592 // within an outer pad that unwinds somewhere else, 3593 // because catchswitch doesn't have a nounwind variant. 3594 // See e.g. SimplifyCFGOpt::SimplifyUnreachable. 3595 if (CSI->unwindsToCaller()) 3596 continue; 3597 UnwindDest = CSI->getUnwindDest(); 3598 } else if (auto *II = dyn_cast<InvokeInst>(U)) { 3599 UnwindDest = II->getUnwindDest(); 3600 } else if (isa<CallInst>(U)) { 3601 // Calls which don't unwind may be found inside funclet 3602 // pads that unwind somewhere else. We don't *require* 3603 // such calls to be annotated nounwind. 3604 continue; 3605 } else if (auto *CPI = dyn_cast<CleanupPadInst>(U)) { 3606 // The unwind dest for a cleanup can only be found by 3607 // recursive search. Add it to the worklist, and we'll 3608 // search for its first use that determines where it unwinds. 3609 Worklist.push_back(CPI); 3610 continue; 3611 } else { 3612 Assert(isa<CatchReturnInst>(U), "Bogus funclet pad use", U); 3613 continue; 3614 } 3615 3616 Value *UnwindPad; 3617 bool ExitsFPI; 3618 if (UnwindDest) { 3619 UnwindPad = UnwindDest->getFirstNonPHI(); 3620 if (!cast<Instruction>(UnwindPad)->isEHPad()) 3621 continue; 3622 Value *UnwindParent = getParentPad(UnwindPad); 3623 // Ignore unwind edges that don't exit CurrentPad. 3624 if (UnwindParent == CurrentPad) 3625 continue; 3626 // Determine whether the original funclet pad is exited, 3627 // and if we are scanning nested pads determine how many 3628 // of them are exited so we can stop searching their 3629 // children. 3630 Value *ExitedPad = CurrentPad; 3631 ExitsFPI = false; 3632 do { 3633 if (ExitedPad == &FPI) { 3634 ExitsFPI = true; 3635 // Now we can resolve any ancestors of CurrentPad up to 3636 // FPI, but not including FPI since we need to make sure 3637 // to check all direct users of FPI for consistency. 3638 UnresolvedAncestorPad = &FPI; 3639 break; 3640 } 3641 Value *ExitedParent = getParentPad(ExitedPad); 3642 if (ExitedParent == UnwindParent) { 3643 // ExitedPad is the ancestor-most pad which this unwind 3644 // edge exits, so we can resolve up to it, meaning that 3645 // ExitedParent is the first ancestor still unresolved. 3646 UnresolvedAncestorPad = ExitedParent; 3647 break; 3648 } 3649 ExitedPad = ExitedParent; 3650 } while (!isa<ConstantTokenNone>(ExitedPad)); 3651 } else { 3652 // Unwinding to caller exits all pads. 3653 UnwindPad = ConstantTokenNone::get(FPI.getContext()); 3654 ExitsFPI = true; 3655 UnresolvedAncestorPad = &FPI; 3656 } 3657 3658 if (ExitsFPI) { 3659 // This unwind edge exits FPI. Make sure it agrees with other 3660 // such edges. 3661 if (FirstUser) { 3662 Assert(UnwindPad == FirstUnwindPad, "Unwind edges out of a funclet " 3663 "pad must have the same unwind " 3664 "dest", 3665 &FPI, U, FirstUser); 3666 } else { 3667 FirstUser = U; 3668 FirstUnwindPad = UnwindPad; 3669 // Record cleanup sibling unwinds for verifySiblingFuncletUnwinds 3670 if (isa<CleanupPadInst>(&FPI) && !isa<ConstantTokenNone>(UnwindPad) && 3671 getParentPad(UnwindPad) == getParentPad(&FPI)) 3672 SiblingFuncletInfo[&FPI] = cast<TerminatorInst>(U); 3673 } 3674 } 3675 // Make sure we visit all uses of FPI, but for nested pads stop as 3676 // soon as we know where they unwind to. 3677 if (CurrentPad != &FPI) 3678 break; 3679 } 3680 if (UnresolvedAncestorPad) { 3681 if (CurrentPad == UnresolvedAncestorPad) { 3682 // When CurrentPad is FPI itself, we don't mark it as resolved even if 3683 // we've found an unwind edge that exits it, because we need to verify 3684 // all direct uses of FPI. 3685 assert(CurrentPad == &FPI); 3686 continue; 3687 } 3688 // Pop off the worklist any nested pads that we've found an unwind 3689 // destination for. The pads on the worklist are the uncles, 3690 // great-uncles, etc. of CurrentPad. We've found an unwind destination 3691 // for all ancestors of CurrentPad up to but not including 3692 // UnresolvedAncestorPad. 3693 Value *ResolvedPad = CurrentPad; 3694 while (!Worklist.empty()) { 3695 Value *UnclePad = Worklist.back(); 3696 Value *AncestorPad = getParentPad(UnclePad); 3697 // Walk ResolvedPad up the ancestor list until we either find the 3698 // uncle's parent or the last resolved ancestor. 3699 while (ResolvedPad != AncestorPad) { 3700 Value *ResolvedParent = getParentPad(ResolvedPad); 3701 if (ResolvedParent == UnresolvedAncestorPad) { 3702 break; 3703 } 3704 ResolvedPad = ResolvedParent; 3705 } 3706 // If the resolved ancestor search didn't find the uncle's parent, 3707 // then the uncle is not yet resolved. 3708 if (ResolvedPad != AncestorPad) 3709 break; 3710 // This uncle is resolved, so pop it from the worklist. 3711 Worklist.pop_back(); 3712 } 3713 } 3714 } 3715 3716 if (FirstUnwindPad) { 3717 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(FPI.getParentPad())) { 3718 BasicBlock *SwitchUnwindDest = CatchSwitch->getUnwindDest(); 3719 Value *SwitchUnwindPad; 3720 if (SwitchUnwindDest) 3721 SwitchUnwindPad = SwitchUnwindDest->getFirstNonPHI(); 3722 else 3723 SwitchUnwindPad = ConstantTokenNone::get(FPI.getContext()); 3724 Assert(SwitchUnwindPad == FirstUnwindPad, 3725 "Unwind edges out of a catch must have the same unwind dest as " 3726 "the parent catchswitch", 3727 &FPI, FirstUser, CatchSwitch); 3728 } 3729 } 3730 3731 visitInstruction(FPI); 3732 } 3733 3734 void Verifier::visitCatchSwitchInst(CatchSwitchInst &CatchSwitch) { 3735 BasicBlock *BB = CatchSwitch.getParent(); 3736 3737 Function *F = BB->getParent(); 3738 Assert(F->hasPersonalityFn(), 3739 "CatchSwitchInst needs to be in a function with a personality.", 3740 &CatchSwitch); 3741 3742 // The catchswitch instruction must be the first non-PHI instruction in the 3743 // block. 3744 Assert(BB->getFirstNonPHI() == &CatchSwitch, 3745 "CatchSwitchInst not the first non-PHI instruction in the block.", 3746 &CatchSwitch); 3747 3748 auto *ParentPad = CatchSwitch.getParentPad(); 3749 Assert(isa<ConstantTokenNone>(ParentPad) || isa<FuncletPadInst>(ParentPad), 3750 "CatchSwitchInst has an invalid parent.", ParentPad); 3751 3752 if (BasicBlock *UnwindDest = CatchSwitch.getUnwindDest()) { 3753 Instruction *I = UnwindDest->getFirstNonPHI(); 3754 Assert(I->isEHPad() && !isa<LandingPadInst>(I), 3755 "CatchSwitchInst must unwind to an EH block which is not a " 3756 "landingpad.", 3757 &CatchSwitch); 3758 3759 // Record catchswitch sibling unwinds for verifySiblingFuncletUnwinds 3760 if (getParentPad(I) == ParentPad) 3761 SiblingFuncletInfo[&CatchSwitch] = &CatchSwitch; 3762 } 3763 3764 Assert(CatchSwitch.getNumHandlers() != 0, 3765 "CatchSwitchInst cannot have empty handler list", &CatchSwitch); 3766 3767 for (BasicBlock *Handler : CatchSwitch.handlers()) { 3768 Assert(isa<CatchPadInst>(Handler->getFirstNonPHI()), 3769 "CatchSwitchInst handlers must be catchpads", &CatchSwitch, Handler); 3770 } 3771 3772 visitEHPadPredecessors(CatchSwitch); 3773 visitTerminatorInst(CatchSwitch); 3774 } 3775 3776 void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) { 3777 Assert(isa<CleanupPadInst>(CRI.getOperand(0)), 3778 "CleanupReturnInst needs to be provided a CleanupPad", &CRI, 3779 CRI.getOperand(0)); 3780 3781 if (BasicBlock *UnwindDest = CRI.getUnwindDest()) { 3782 Instruction *I = UnwindDest->getFirstNonPHI(); 3783 Assert(I->isEHPad() && !isa<LandingPadInst>(I), 3784 "CleanupReturnInst must unwind to an EH block which is not a " 3785 "landingpad.", 3786 &CRI); 3787 } 3788 3789 visitTerminatorInst(CRI); 3790 } 3791 3792 void Verifier::verifyDominatesUse(Instruction &I, unsigned i) { 3793 Instruction *Op = cast<Instruction>(I.getOperand(i)); 3794 // If the we have an invalid invoke, don't try to compute the dominance. 3795 // We already reject it in the invoke specific checks and the dominance 3796 // computation doesn't handle multiple edges. 3797 if (InvokeInst *II = dyn_cast<InvokeInst>(Op)) { 3798 if (II->getNormalDest() == II->getUnwindDest()) 3799 return; 3800 } 3801 3802 // Quick check whether the def has already been encountered in the same block. 3803 // PHI nodes are not checked to prevent accepting preceeding PHIs, because PHI 3804 // uses are defined to happen on the incoming edge, not at the instruction. 3805 // 3806 // FIXME: If this operand is a MetadataAsValue (wrapping a LocalAsMetadata) 3807 // wrapping an SSA value, assert that we've already encountered it. See 3808 // related FIXME in Mapper::mapLocalAsMetadata in ValueMapper.cpp. 3809 if (!isa<PHINode>(I) && InstsInThisBlock.count(Op)) 3810 return; 3811 3812 const Use &U = I.getOperandUse(i); 3813 Assert(DT.dominates(Op, U), 3814 "Instruction does not dominate all uses!", Op, &I); 3815 } 3816 3817 void Verifier::visitDereferenceableMetadata(Instruction& I, MDNode* MD) { 3818 Assert(I.getType()->isPointerTy(), "dereferenceable, dereferenceable_or_null " 3819 "apply only to pointer types", &I); 3820 Assert(isa<LoadInst>(I), 3821 "dereferenceable, dereferenceable_or_null apply only to load" 3822 " instructions, use attributes for calls or invokes", &I); 3823 Assert(MD->getNumOperands() == 1, "dereferenceable, dereferenceable_or_null " 3824 "take one operand!", &I); 3825 ConstantInt *CI = mdconst::dyn_extract<ConstantInt>(MD->getOperand(0)); 3826 Assert(CI && CI->getType()->isIntegerTy(64), "dereferenceable, " 3827 "dereferenceable_or_null metadata value must be an i64!", &I); 3828 } 3829 3830 /// verifyInstruction - Verify that an instruction is well formed. 3831 /// 3832 void Verifier::visitInstruction(Instruction &I) { 3833 BasicBlock *BB = I.getParent(); 3834 Assert(BB, "Instruction not embedded in basic block!", &I); 3835 3836 if (!isa<PHINode>(I)) { // Check that non-phi nodes are not self referential 3837 for (User *U : I.users()) { 3838 Assert(U != (User *)&I || !DT.isReachableFromEntry(BB), 3839 "Only PHI nodes may reference their own value!", &I); 3840 } 3841 } 3842 3843 // Check that void typed values don't have names 3844 Assert(!I.getType()->isVoidTy() || !I.hasName(), 3845 "Instruction has a name, but provides a void value!", &I); 3846 3847 // Check that the return value of the instruction is either void or a legal 3848 // value type. 3849 Assert(I.getType()->isVoidTy() || I.getType()->isFirstClassType(), 3850 "Instruction returns a non-scalar type!", &I); 3851 3852 // Check that the instruction doesn't produce metadata. Calls are already 3853 // checked against the callee type. 3854 Assert(!I.getType()->isMetadataTy() || isa<CallInst>(I) || isa<InvokeInst>(I), 3855 "Invalid use of metadata!", &I); 3856 3857 // Check that all uses of the instruction, if they are instructions 3858 // themselves, actually have parent basic blocks. If the use is not an 3859 // instruction, it is an error! 3860 for (Use &U : I.uses()) { 3861 if (Instruction *Used = dyn_cast<Instruction>(U.getUser())) 3862 Assert(Used->getParent() != nullptr, 3863 "Instruction referencing" 3864 " instruction not embedded in a basic block!", 3865 &I, Used); 3866 else { 3867 CheckFailed("Use of instruction is not an instruction!", U); 3868 return; 3869 } 3870 } 3871 3872 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { 3873 Assert(I.getOperand(i) != nullptr, "Instruction has null operand!", &I); 3874 3875 // Check to make sure that only first-class-values are operands to 3876 // instructions. 3877 if (!I.getOperand(i)->getType()->isFirstClassType()) { 3878 Assert(false, "Instruction operands must be first-class values!", &I); 3879 } 3880 3881 if (Function *F = dyn_cast<Function>(I.getOperand(i))) { 3882 // Check to make sure that the "address of" an intrinsic function is never 3883 // taken. 3884 Assert( 3885 !F->isIntrinsic() || 3886 i == (isa<CallInst>(I) ? e - 1 : isa<InvokeInst>(I) ? e - 3 : 0), 3887 "Cannot take the address of an intrinsic!", &I); 3888 Assert( 3889 !F->isIntrinsic() || isa<CallInst>(I) || 3890 F->getIntrinsicID() == Intrinsic::donothing || 3891 F->getIntrinsicID() == Intrinsic::coro_resume || 3892 F->getIntrinsicID() == Intrinsic::coro_destroy || 3893 F->getIntrinsicID() == Intrinsic::experimental_patchpoint_void || 3894 F->getIntrinsicID() == Intrinsic::experimental_patchpoint_i64 || 3895 F->getIntrinsicID() == Intrinsic::experimental_gc_statepoint, 3896 "Cannot invoke an intrinsic other than donothing, patchpoint, " 3897 "statepoint, coro_resume or coro_destroy", 3898 &I); 3899 Assert(F->getParent() == &M, "Referencing function in another module!", 3900 &I, &M, F, F->getParent()); 3901 } else if (BasicBlock *OpBB = dyn_cast<BasicBlock>(I.getOperand(i))) { 3902 Assert(OpBB->getParent() == BB->getParent(), 3903 "Referring to a basic block in another function!", &I); 3904 } else if (Argument *OpArg = dyn_cast<Argument>(I.getOperand(i))) { 3905 Assert(OpArg->getParent() == BB->getParent(), 3906 "Referring to an argument in another function!", &I); 3907 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(I.getOperand(i))) { 3908 Assert(GV->getParent() == &M, "Referencing global in another module!", &I, 3909 &M, GV, GV->getParent()); 3910 } else if (isa<Instruction>(I.getOperand(i))) { 3911 verifyDominatesUse(I, i); 3912 } else if (isa<InlineAsm>(I.getOperand(i))) { 3913 Assert((i + 1 == e && isa<CallInst>(I)) || 3914 (i + 3 == e && isa<InvokeInst>(I)), 3915 "Cannot take the address of an inline asm!", &I); 3916 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(I.getOperand(i))) { 3917 if (CE->getType()->isPtrOrPtrVectorTy() || 3918 !DL.getNonIntegralAddressSpaces().empty()) { 3919 // If we have a ConstantExpr pointer, we need to see if it came from an 3920 // illegal bitcast. If the datalayout string specifies non-integral 3921 // address spaces then we also need to check for illegal ptrtoint and 3922 // inttoptr expressions. 3923 visitConstantExprsRecursively(CE); 3924 } 3925 } 3926 } 3927 3928 if (MDNode *MD = I.getMetadata(LLVMContext::MD_fpmath)) { 3929 Assert(I.getType()->isFPOrFPVectorTy(), 3930 "fpmath requires a floating point result!", &I); 3931 Assert(MD->getNumOperands() == 1, "fpmath takes one operand!", &I); 3932 if (ConstantFP *CFP0 = 3933 mdconst::dyn_extract_or_null<ConstantFP>(MD->getOperand(0))) { 3934 const APFloat &Accuracy = CFP0->getValueAPF(); 3935 Assert(&Accuracy.getSemantics() == &APFloat::IEEEsingle(), 3936 "fpmath accuracy must have float type", &I); 3937 Assert(Accuracy.isFiniteNonZero() && !Accuracy.isNegative(), 3938 "fpmath accuracy not a positive number!", &I); 3939 } else { 3940 Assert(false, "invalid fpmath accuracy!", &I); 3941 } 3942 } 3943 3944 if (MDNode *Range = I.getMetadata(LLVMContext::MD_range)) { 3945 Assert(isa<LoadInst>(I) || isa<CallInst>(I) || isa<InvokeInst>(I), 3946 "Ranges are only for loads, calls and invokes!", &I); 3947 visitRangeMetadata(I, Range, I.getType()); 3948 } 3949 3950 if (I.getMetadata(LLVMContext::MD_nonnull)) { 3951 Assert(I.getType()->isPointerTy(), "nonnull applies only to pointer types", 3952 &I); 3953 Assert(isa<LoadInst>(I), 3954 "nonnull applies only to load instructions, use attributes" 3955 " for calls or invokes", 3956 &I); 3957 } 3958 3959 if (MDNode *MD = I.getMetadata(LLVMContext::MD_dereferenceable)) 3960 visitDereferenceableMetadata(I, MD); 3961 3962 if (MDNode *MD = I.getMetadata(LLVMContext::MD_dereferenceable_or_null)) 3963 visitDereferenceableMetadata(I, MD); 3964 3965 if (MDNode *TBAA = I.getMetadata(LLVMContext::MD_tbaa)) 3966 TBAAVerifyHelper.visitTBAAMetadata(I, TBAA); 3967 3968 if (MDNode *AlignMD = I.getMetadata(LLVMContext::MD_align)) { 3969 Assert(I.getType()->isPointerTy(), "align applies only to pointer types", 3970 &I); 3971 Assert(isa<LoadInst>(I), "align applies only to load instructions, " 3972 "use attributes for calls or invokes", &I); 3973 Assert(AlignMD->getNumOperands() == 1, "align takes one operand!", &I); 3974 ConstantInt *CI = mdconst::dyn_extract<ConstantInt>(AlignMD->getOperand(0)); 3975 Assert(CI && CI->getType()->isIntegerTy(64), 3976 "align metadata value must be an i64!", &I); 3977 uint64_t Align = CI->getZExtValue(); 3978 Assert(isPowerOf2_64(Align), 3979 "align metadata value must be a power of 2!", &I); 3980 Assert(Align <= Value::MaximumAlignment, 3981 "alignment is larger that implementation defined limit", &I); 3982 } 3983 3984 if (MDNode *N = I.getDebugLoc().getAsMDNode()) { 3985 AssertDI(isa<DILocation>(N), "invalid !dbg metadata attachment", &I, N); 3986 visitMDNode(*N); 3987 } 3988 3989 if (auto *DII = dyn_cast<DbgVariableIntrinsic>(&I)) 3990 verifyFragmentExpression(*DII); 3991 3992 InstsInThisBlock.insert(&I); 3993 } 3994 3995 /// Allow intrinsics to be verified in different ways. 3996 void Verifier::visitIntrinsicCallSite(Intrinsic::ID ID, CallSite CS) { 3997 Function *IF = CS.getCalledFunction(); 3998 Assert(IF->isDeclaration(), "Intrinsic functions should never be defined!", 3999 IF); 4000 4001 // Verify that the intrinsic prototype lines up with what the .td files 4002 // describe. 4003 FunctionType *IFTy = IF->getFunctionType(); 4004 bool IsVarArg = IFTy->isVarArg(); 4005 4006 SmallVector<Intrinsic::IITDescriptor, 8> Table; 4007 getIntrinsicInfoTableEntries(ID, Table); 4008 ArrayRef<Intrinsic::IITDescriptor> TableRef = Table; 4009 4010 SmallVector<Type *, 4> ArgTys; 4011 Assert(!Intrinsic::matchIntrinsicType(IFTy->getReturnType(), 4012 TableRef, ArgTys), 4013 "Intrinsic has incorrect return type!", IF); 4014 for (unsigned i = 0, e = IFTy->getNumParams(); i != e; ++i) 4015 Assert(!Intrinsic::matchIntrinsicType(IFTy->getParamType(i), 4016 TableRef, ArgTys), 4017 "Intrinsic has incorrect argument type!", IF); 4018 4019 // Verify if the intrinsic call matches the vararg property. 4020 if (IsVarArg) 4021 Assert(!Intrinsic::matchIntrinsicVarArg(IsVarArg, TableRef), 4022 "Intrinsic was not defined with variable arguments!", IF); 4023 else 4024 Assert(!Intrinsic::matchIntrinsicVarArg(IsVarArg, TableRef), 4025 "Callsite was not defined with variable arguments!", IF); 4026 4027 // All descriptors should be absorbed by now. 4028 Assert(TableRef.empty(), "Intrinsic has too few arguments!", IF); 4029 4030 // Now that we have the intrinsic ID and the actual argument types (and we 4031 // know they are legal for the intrinsic!) get the intrinsic name through the 4032 // usual means. This allows us to verify the mangling of argument types into 4033 // the name. 4034 const std::string ExpectedName = Intrinsic::getName(ID, ArgTys); 4035 Assert(ExpectedName == IF->getName(), 4036 "Intrinsic name not mangled correctly for type arguments! " 4037 "Should be: " + 4038 ExpectedName, 4039 IF); 4040 4041 // If the intrinsic takes MDNode arguments, verify that they are either global 4042 // or are local to *this* function. 4043 for (Value *V : CS.args()) 4044 if (auto *MD = dyn_cast<MetadataAsValue>(V)) 4045 visitMetadataAsValue(*MD, CS.getCaller()); 4046 4047 switch (ID) { 4048 default: 4049 break; 4050 case Intrinsic::coro_id: { 4051 auto *InfoArg = CS.getArgOperand(3)->stripPointerCasts(); 4052 if (isa<ConstantPointerNull>(InfoArg)) 4053 break; 4054 auto *GV = dyn_cast<GlobalVariable>(InfoArg); 4055 Assert(GV && GV->isConstant() && GV->hasDefinitiveInitializer(), 4056 "info argument of llvm.coro.begin must refer to an initialized " 4057 "constant"); 4058 Constant *Init = GV->getInitializer(); 4059 Assert(isa<ConstantStruct>(Init) || isa<ConstantArray>(Init), 4060 "info argument of llvm.coro.begin must refer to either a struct or " 4061 "an array"); 4062 break; 4063 } 4064 case Intrinsic::ctlz: // llvm.ctlz 4065 case Intrinsic::cttz: // llvm.cttz 4066 Assert(isa<ConstantInt>(CS.getArgOperand(1)), 4067 "is_zero_undef argument of bit counting intrinsics must be a " 4068 "constant int", 4069 CS); 4070 break; 4071 case Intrinsic::experimental_constrained_fadd: 4072 case Intrinsic::experimental_constrained_fsub: 4073 case Intrinsic::experimental_constrained_fmul: 4074 case Intrinsic::experimental_constrained_fdiv: 4075 case Intrinsic::experimental_constrained_frem: 4076 case Intrinsic::experimental_constrained_fma: 4077 case Intrinsic::experimental_constrained_sqrt: 4078 case Intrinsic::experimental_constrained_pow: 4079 case Intrinsic::experimental_constrained_powi: 4080 case Intrinsic::experimental_constrained_sin: 4081 case Intrinsic::experimental_constrained_cos: 4082 case Intrinsic::experimental_constrained_exp: 4083 case Intrinsic::experimental_constrained_exp2: 4084 case Intrinsic::experimental_constrained_log: 4085 case Intrinsic::experimental_constrained_log10: 4086 case Intrinsic::experimental_constrained_log2: 4087 case Intrinsic::experimental_constrained_rint: 4088 case Intrinsic::experimental_constrained_nearbyint: 4089 visitConstrainedFPIntrinsic( 4090 cast<ConstrainedFPIntrinsic>(*CS.getInstruction())); 4091 break; 4092 case Intrinsic::dbg_declare: // llvm.dbg.declare 4093 Assert(isa<MetadataAsValue>(CS.getArgOperand(0)), 4094 "invalid llvm.dbg.declare intrinsic call 1", CS); 4095 visitDbgIntrinsic("declare", cast<DbgVariableIntrinsic>(*CS.getInstruction())); 4096 break; 4097 case Intrinsic::dbg_addr: // llvm.dbg.addr 4098 visitDbgIntrinsic("addr", cast<DbgVariableIntrinsic>(*CS.getInstruction())); 4099 break; 4100 case Intrinsic::dbg_value: // llvm.dbg.value 4101 visitDbgIntrinsic("value", cast<DbgVariableIntrinsic>(*CS.getInstruction())); 4102 break; 4103 case Intrinsic::dbg_label: // llvm.dbg.label 4104 visitDbgLabelIntrinsic("label", cast<DbgLabelInst>(*CS.getInstruction())); 4105 break; 4106 case Intrinsic::memcpy: 4107 case Intrinsic::memmove: 4108 case Intrinsic::memset: { 4109 const auto *MI = cast<MemIntrinsic>(CS.getInstruction()); 4110 auto IsValidAlignment = [&](unsigned Alignment) -> bool { 4111 return Alignment == 0 || isPowerOf2_32(Alignment); 4112 }; 4113 Assert(IsValidAlignment(MI->getDestAlignment()), 4114 "alignment of arg 0 of memory intrinsic must be 0 or a power of 2", 4115 CS); 4116 if (const auto *MTI = dyn_cast<MemTransferInst>(MI)) { 4117 Assert(IsValidAlignment(MTI->getSourceAlignment()), 4118 "alignment of arg 1 of memory intrinsic must be 0 or a power of 2", 4119 CS); 4120 } 4121 Assert(isa<ConstantInt>(CS.getArgOperand(3)), 4122 "isvolatile argument of memory intrinsics must be a constant int", 4123 CS); 4124 break; 4125 } 4126 case Intrinsic::memcpy_element_unordered_atomic: 4127 case Intrinsic::memmove_element_unordered_atomic: 4128 case Intrinsic::memset_element_unordered_atomic: { 4129 const auto *AMI = cast<AtomicMemIntrinsic>(CS.getInstruction()); 4130 4131 ConstantInt *ElementSizeCI = 4132 dyn_cast<ConstantInt>(AMI->getRawElementSizeInBytes()); 4133 Assert(ElementSizeCI, 4134 "element size of the element-wise unordered atomic memory " 4135 "intrinsic must be a constant int", 4136 CS); 4137 const APInt &ElementSizeVal = ElementSizeCI->getValue(); 4138 Assert(ElementSizeVal.isPowerOf2(), 4139 "element size of the element-wise atomic memory intrinsic " 4140 "must be a power of 2", 4141 CS); 4142 4143 if (auto *LengthCI = dyn_cast<ConstantInt>(AMI->getLength())) { 4144 uint64_t Length = LengthCI->getZExtValue(); 4145 uint64_t ElementSize = AMI->getElementSizeInBytes(); 4146 Assert((Length % ElementSize) == 0, 4147 "constant length must be a multiple of the element size in the " 4148 "element-wise atomic memory intrinsic", 4149 CS); 4150 } 4151 4152 auto IsValidAlignment = [&](uint64_t Alignment) { 4153 return isPowerOf2_64(Alignment) && ElementSizeVal.ule(Alignment); 4154 }; 4155 uint64_t DstAlignment = AMI->getDestAlignment(); 4156 Assert(IsValidAlignment(DstAlignment), 4157 "incorrect alignment of the destination argument", CS); 4158 if (const auto *AMT = dyn_cast<AtomicMemTransferInst>(AMI)) { 4159 uint64_t SrcAlignment = AMT->getSourceAlignment(); 4160 Assert(IsValidAlignment(SrcAlignment), 4161 "incorrect alignment of the source argument", CS); 4162 } 4163 break; 4164 } 4165 case Intrinsic::gcroot: 4166 case Intrinsic::gcwrite: 4167 case Intrinsic::gcread: 4168 if (ID == Intrinsic::gcroot) { 4169 AllocaInst *AI = 4170 dyn_cast<AllocaInst>(CS.getArgOperand(0)->stripPointerCasts()); 4171 Assert(AI, "llvm.gcroot parameter #1 must be an alloca.", CS); 4172 Assert(isa<Constant>(CS.getArgOperand(1)), 4173 "llvm.gcroot parameter #2 must be a constant.", CS); 4174 if (!AI->getAllocatedType()->isPointerTy()) { 4175 Assert(!isa<ConstantPointerNull>(CS.getArgOperand(1)), 4176 "llvm.gcroot parameter #1 must either be a pointer alloca, " 4177 "or argument #2 must be a non-null constant.", 4178 CS); 4179 } 4180 } 4181 4182 Assert(CS.getParent()->getParent()->hasGC(), 4183 "Enclosing function does not use GC.", CS); 4184 break; 4185 case Intrinsic::init_trampoline: 4186 Assert(isa<Function>(CS.getArgOperand(1)->stripPointerCasts()), 4187 "llvm.init_trampoline parameter #2 must resolve to a function.", 4188 CS); 4189 break; 4190 case Intrinsic::prefetch: 4191 Assert(isa<ConstantInt>(CS.getArgOperand(1)) && 4192 isa<ConstantInt>(CS.getArgOperand(2)) && 4193 cast<ConstantInt>(CS.getArgOperand(1))->getZExtValue() < 2 && 4194 cast<ConstantInt>(CS.getArgOperand(2))->getZExtValue() < 4, 4195 "invalid arguments to llvm.prefetch", CS); 4196 break; 4197 case Intrinsic::stackprotector: 4198 Assert(isa<AllocaInst>(CS.getArgOperand(1)->stripPointerCasts()), 4199 "llvm.stackprotector parameter #2 must resolve to an alloca.", CS); 4200 break; 4201 case Intrinsic::lifetime_start: 4202 case Intrinsic::lifetime_end: 4203 case Intrinsic::invariant_start: 4204 Assert(isa<ConstantInt>(CS.getArgOperand(0)), 4205 "size argument of memory use markers must be a constant integer", 4206 CS); 4207 break; 4208 case Intrinsic::invariant_end: 4209 Assert(isa<ConstantInt>(CS.getArgOperand(1)), 4210 "llvm.invariant.end parameter #2 must be a constant integer", CS); 4211 break; 4212 4213 case Intrinsic::localescape: { 4214 BasicBlock *BB = CS.getParent(); 4215 Assert(BB == &BB->getParent()->front(), 4216 "llvm.localescape used outside of entry block", CS); 4217 Assert(!SawFrameEscape, 4218 "multiple calls to llvm.localescape in one function", CS); 4219 for (Value *Arg : CS.args()) { 4220 if (isa<ConstantPointerNull>(Arg)) 4221 continue; // Null values are allowed as placeholders. 4222 auto *AI = dyn_cast<AllocaInst>(Arg->stripPointerCasts()); 4223 Assert(AI && AI->isStaticAlloca(), 4224 "llvm.localescape only accepts static allocas", CS); 4225 } 4226 FrameEscapeInfo[BB->getParent()].first = CS.getNumArgOperands(); 4227 SawFrameEscape = true; 4228 break; 4229 } 4230 case Intrinsic::localrecover: { 4231 Value *FnArg = CS.getArgOperand(0)->stripPointerCasts(); 4232 Function *Fn = dyn_cast<Function>(FnArg); 4233 Assert(Fn && !Fn->isDeclaration(), 4234 "llvm.localrecover first " 4235 "argument must be function defined in this module", 4236 CS); 4237 auto *IdxArg = dyn_cast<ConstantInt>(CS.getArgOperand(2)); 4238 Assert(IdxArg, "idx argument of llvm.localrecover must be a constant int", 4239 CS); 4240 auto &Entry = FrameEscapeInfo[Fn]; 4241 Entry.second = unsigned( 4242 std::max(uint64_t(Entry.second), IdxArg->getLimitedValue(~0U) + 1)); 4243 break; 4244 } 4245 4246 case Intrinsic::experimental_gc_statepoint: 4247 Assert(!CS.isInlineAsm(), 4248 "gc.statepoint support for inline assembly unimplemented", CS); 4249 Assert(CS.getParent()->getParent()->hasGC(), 4250 "Enclosing function does not use GC.", CS); 4251 4252 verifyStatepoint(CS); 4253 break; 4254 case Intrinsic::experimental_gc_result: { 4255 Assert(CS.getParent()->getParent()->hasGC(), 4256 "Enclosing function does not use GC.", CS); 4257 // Are we tied to a statepoint properly? 4258 CallSite StatepointCS(CS.getArgOperand(0)); 4259 const Function *StatepointFn = 4260 StatepointCS.getInstruction() ? StatepointCS.getCalledFunction() : nullptr; 4261 Assert(StatepointFn && StatepointFn->isDeclaration() && 4262 StatepointFn->getIntrinsicID() == 4263 Intrinsic::experimental_gc_statepoint, 4264 "gc.result operand #1 must be from a statepoint", CS, 4265 CS.getArgOperand(0)); 4266 4267 // Assert that result type matches wrapped callee. 4268 const Value *Target = StatepointCS.getArgument(2); 4269 auto *PT = cast<PointerType>(Target->getType()); 4270 auto *TargetFuncType = cast<FunctionType>(PT->getElementType()); 4271 Assert(CS.getType() == TargetFuncType->getReturnType(), 4272 "gc.result result type does not match wrapped callee", CS); 4273 break; 4274 } 4275 case Intrinsic::experimental_gc_relocate: { 4276 Assert(CS.getNumArgOperands() == 3, "wrong number of arguments", CS); 4277 4278 Assert(isa<PointerType>(CS.getType()->getScalarType()), 4279 "gc.relocate must return a pointer or a vector of pointers", CS); 4280 4281 // Check that this relocate is correctly tied to the statepoint 4282 4283 // This is case for relocate on the unwinding path of an invoke statepoint 4284 if (LandingPadInst *LandingPad = 4285 dyn_cast<LandingPadInst>(CS.getArgOperand(0))) { 4286 4287 const BasicBlock *InvokeBB = 4288 LandingPad->getParent()->getUniquePredecessor(); 4289 4290 // Landingpad relocates should have only one predecessor with invoke 4291 // statepoint terminator 4292 Assert(InvokeBB, "safepoints should have unique landingpads", 4293 LandingPad->getParent()); 4294 Assert(InvokeBB->getTerminator(), "safepoint block should be well formed", 4295 InvokeBB); 4296 Assert(isStatepoint(InvokeBB->getTerminator()), 4297 "gc relocate should be linked to a statepoint", InvokeBB); 4298 } 4299 else { 4300 // In all other cases relocate should be tied to the statepoint directly. 4301 // This covers relocates on a normal return path of invoke statepoint and 4302 // relocates of a call statepoint. 4303 auto Token = CS.getArgOperand(0); 4304 Assert(isa<Instruction>(Token) && isStatepoint(cast<Instruction>(Token)), 4305 "gc relocate is incorrectly tied to the statepoint", CS, Token); 4306 } 4307 4308 // Verify rest of the relocate arguments. 4309 4310 ImmutableCallSite StatepointCS( 4311 cast<GCRelocateInst>(*CS.getInstruction()).getStatepoint()); 4312 4313 // Both the base and derived must be piped through the safepoint. 4314 Value* Base = CS.getArgOperand(1); 4315 Assert(isa<ConstantInt>(Base), 4316 "gc.relocate operand #2 must be integer offset", CS); 4317 4318 Value* Derived = CS.getArgOperand(2); 4319 Assert(isa<ConstantInt>(Derived), 4320 "gc.relocate operand #3 must be integer offset", CS); 4321 4322 const int BaseIndex = cast<ConstantInt>(Base)->getZExtValue(); 4323 const int DerivedIndex = cast<ConstantInt>(Derived)->getZExtValue(); 4324 // Check the bounds 4325 Assert(0 <= BaseIndex && BaseIndex < (int)StatepointCS.arg_size(), 4326 "gc.relocate: statepoint base index out of bounds", CS); 4327 Assert(0 <= DerivedIndex && DerivedIndex < (int)StatepointCS.arg_size(), 4328 "gc.relocate: statepoint derived index out of bounds", CS); 4329 4330 // Check that BaseIndex and DerivedIndex fall within the 'gc parameters' 4331 // section of the statepoint's argument. 4332 Assert(StatepointCS.arg_size() > 0, 4333 "gc.statepoint: insufficient arguments"); 4334 Assert(isa<ConstantInt>(StatepointCS.getArgument(3)), 4335 "gc.statement: number of call arguments must be constant integer"); 4336 const unsigned NumCallArgs = 4337 cast<ConstantInt>(StatepointCS.getArgument(3))->getZExtValue(); 4338 Assert(StatepointCS.arg_size() > NumCallArgs + 5, 4339 "gc.statepoint: mismatch in number of call arguments"); 4340 Assert(isa<ConstantInt>(StatepointCS.getArgument(NumCallArgs + 5)), 4341 "gc.statepoint: number of transition arguments must be " 4342 "a constant integer"); 4343 const int NumTransitionArgs = 4344 cast<ConstantInt>(StatepointCS.getArgument(NumCallArgs + 5)) 4345 ->getZExtValue(); 4346 const int DeoptArgsStart = 4 + NumCallArgs + 1 + NumTransitionArgs + 1; 4347 Assert(isa<ConstantInt>(StatepointCS.getArgument(DeoptArgsStart)), 4348 "gc.statepoint: number of deoptimization arguments must be " 4349 "a constant integer"); 4350 const int NumDeoptArgs = 4351 cast<ConstantInt>(StatepointCS.getArgument(DeoptArgsStart)) 4352 ->getZExtValue(); 4353 const int GCParamArgsStart = DeoptArgsStart + 1 + NumDeoptArgs; 4354 const int GCParamArgsEnd = StatepointCS.arg_size(); 4355 Assert(GCParamArgsStart <= BaseIndex && BaseIndex < GCParamArgsEnd, 4356 "gc.relocate: statepoint base index doesn't fall within the " 4357 "'gc parameters' section of the statepoint call", 4358 CS); 4359 Assert(GCParamArgsStart <= DerivedIndex && DerivedIndex < GCParamArgsEnd, 4360 "gc.relocate: statepoint derived index doesn't fall within the " 4361 "'gc parameters' section of the statepoint call", 4362 CS); 4363 4364 // Relocated value must be either a pointer type or vector-of-pointer type, 4365 // but gc_relocate does not need to return the same pointer type as the 4366 // relocated pointer. It can be casted to the correct type later if it's 4367 // desired. However, they must have the same address space and 'vectorness' 4368 GCRelocateInst &Relocate = cast<GCRelocateInst>(*CS.getInstruction()); 4369 Assert(Relocate.getDerivedPtr()->getType()->isPtrOrPtrVectorTy(), 4370 "gc.relocate: relocated value must be a gc pointer", CS); 4371 4372 auto ResultType = CS.getType(); 4373 auto DerivedType = Relocate.getDerivedPtr()->getType(); 4374 Assert(ResultType->isVectorTy() == DerivedType->isVectorTy(), 4375 "gc.relocate: vector relocates to vector and pointer to pointer", 4376 CS); 4377 Assert( 4378 ResultType->getPointerAddressSpace() == 4379 DerivedType->getPointerAddressSpace(), 4380 "gc.relocate: relocating a pointer shouldn't change its address space", 4381 CS); 4382 break; 4383 } 4384 case Intrinsic::eh_exceptioncode: 4385 case Intrinsic::eh_exceptionpointer: { 4386 Assert(isa<CatchPadInst>(CS.getArgOperand(0)), 4387 "eh.exceptionpointer argument must be a catchpad", CS); 4388 break; 4389 } 4390 case Intrinsic::masked_load: { 4391 Assert(CS.getType()->isVectorTy(), "masked_load: must return a vector", CS); 4392 4393 Value *Ptr = CS.getArgOperand(0); 4394 //Value *Alignment = CS.getArgOperand(1); 4395 Value *Mask = CS.getArgOperand(2); 4396 Value *PassThru = CS.getArgOperand(3); 4397 Assert(Mask->getType()->isVectorTy(), 4398 "masked_load: mask must be vector", CS); 4399 4400 // DataTy is the overloaded type 4401 Type *DataTy = cast<PointerType>(Ptr->getType())->getElementType(); 4402 Assert(DataTy == CS.getType(), 4403 "masked_load: return must match pointer type", CS); 4404 Assert(PassThru->getType() == DataTy, 4405 "masked_load: pass through and data type must match", CS); 4406 Assert(Mask->getType()->getVectorNumElements() == 4407 DataTy->getVectorNumElements(), 4408 "masked_load: vector mask must be same length as data", CS); 4409 break; 4410 } 4411 case Intrinsic::masked_store: { 4412 Value *Val = CS.getArgOperand(0); 4413 Value *Ptr = CS.getArgOperand(1); 4414 //Value *Alignment = CS.getArgOperand(2); 4415 Value *Mask = CS.getArgOperand(3); 4416 Assert(Mask->getType()->isVectorTy(), 4417 "masked_store: mask must be vector", CS); 4418 4419 // DataTy is the overloaded type 4420 Type *DataTy = cast<PointerType>(Ptr->getType())->getElementType(); 4421 Assert(DataTy == Val->getType(), 4422 "masked_store: storee must match pointer type", CS); 4423 Assert(Mask->getType()->getVectorNumElements() == 4424 DataTy->getVectorNumElements(), 4425 "masked_store: vector mask must be same length as data", CS); 4426 break; 4427 } 4428 4429 case Intrinsic::experimental_guard: { 4430 Assert(CS.isCall(), "experimental_guard cannot be invoked", CS); 4431 Assert(CS.countOperandBundlesOfType(LLVMContext::OB_deopt) == 1, 4432 "experimental_guard must have exactly one " 4433 "\"deopt\" operand bundle"); 4434 break; 4435 } 4436 4437 case Intrinsic::experimental_deoptimize: { 4438 Assert(CS.isCall(), "experimental_deoptimize cannot be invoked", CS); 4439 Assert(CS.countOperandBundlesOfType(LLVMContext::OB_deopt) == 1, 4440 "experimental_deoptimize must have exactly one " 4441 "\"deopt\" operand bundle"); 4442 Assert(CS.getType() == CS.getInstruction()->getFunction()->getReturnType(), 4443 "experimental_deoptimize return type must match caller return type"); 4444 4445 if (CS.isCall()) { 4446 auto *DeoptCI = CS.getInstruction(); 4447 auto *RI = dyn_cast<ReturnInst>(DeoptCI->getNextNode()); 4448 Assert(RI, 4449 "calls to experimental_deoptimize must be followed by a return"); 4450 4451 if (!CS.getType()->isVoidTy() && RI) 4452 Assert(RI->getReturnValue() == DeoptCI, 4453 "calls to experimental_deoptimize must be followed by a return " 4454 "of the value computed by experimental_deoptimize"); 4455 } 4456 4457 break; 4458 } 4459 }; 4460 } 4461 4462 /// Carefully grab the subprogram from a local scope. 4463 /// 4464 /// This carefully grabs the subprogram from a local scope, avoiding the 4465 /// built-in assertions that would typically fire. 4466 static DISubprogram *getSubprogram(Metadata *LocalScope) { 4467 if (!LocalScope) 4468 return nullptr; 4469 4470 if (auto *SP = dyn_cast<DISubprogram>(LocalScope)) 4471 return SP; 4472 4473 if (auto *LB = dyn_cast<DILexicalBlockBase>(LocalScope)) 4474 return getSubprogram(LB->getRawScope()); 4475 4476 // Just return null; broken scope chains are checked elsewhere. 4477 assert(!isa<DILocalScope>(LocalScope) && "Unknown type of local scope"); 4478 return nullptr; 4479 } 4480 4481 void Verifier::visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI) { 4482 unsigned NumOperands = FPI.getNumArgOperands(); 4483 Assert(((NumOperands == 5 && FPI.isTernaryOp()) || 4484 (NumOperands == 3 && FPI.isUnaryOp()) || (NumOperands == 4)), 4485 "invalid arguments for constrained FP intrinsic", &FPI); 4486 Assert(isa<MetadataAsValue>(FPI.getArgOperand(NumOperands-1)), 4487 "invalid exception behavior argument", &FPI); 4488 Assert(isa<MetadataAsValue>(FPI.getArgOperand(NumOperands-2)), 4489 "invalid rounding mode argument", &FPI); 4490 Assert(FPI.getRoundingMode() != ConstrainedFPIntrinsic::rmInvalid, 4491 "invalid rounding mode argument", &FPI); 4492 Assert(FPI.getExceptionBehavior() != ConstrainedFPIntrinsic::ebInvalid, 4493 "invalid exception behavior argument", &FPI); 4494 } 4495 4496 void Verifier::visitDbgIntrinsic(StringRef Kind, DbgVariableIntrinsic &DII) { 4497 auto *MD = cast<MetadataAsValue>(DII.getArgOperand(0))->getMetadata(); 4498 AssertDI(isa<ValueAsMetadata>(MD) || 4499 (isa<MDNode>(MD) && !cast<MDNode>(MD)->getNumOperands()), 4500 "invalid llvm.dbg." + Kind + " intrinsic address/value", &DII, MD); 4501 AssertDI(isa<DILocalVariable>(DII.getRawVariable()), 4502 "invalid llvm.dbg." + Kind + " intrinsic variable", &DII, 4503 DII.getRawVariable()); 4504 AssertDI(isa<DIExpression>(DII.getRawExpression()), 4505 "invalid llvm.dbg." + Kind + " intrinsic expression", &DII, 4506 DII.getRawExpression()); 4507 4508 // Ignore broken !dbg attachments; they're checked elsewhere. 4509 if (MDNode *N = DII.getDebugLoc().getAsMDNode()) 4510 if (!isa<DILocation>(N)) 4511 return; 4512 4513 BasicBlock *BB = DII.getParent(); 4514 Function *F = BB ? BB->getParent() : nullptr; 4515 4516 // The scopes for variables and !dbg attachments must agree. 4517 DILocalVariable *Var = DII.getVariable(); 4518 DILocation *Loc = DII.getDebugLoc(); 4519 AssertDI(Loc, "llvm.dbg." + Kind + " intrinsic requires a !dbg attachment", 4520 &DII, BB, F); 4521 4522 DISubprogram *VarSP = getSubprogram(Var->getRawScope()); 4523 DISubprogram *LocSP = getSubprogram(Loc->getRawScope()); 4524 if (!VarSP || !LocSP) 4525 return; // Broken scope chains are checked elsewhere. 4526 4527 AssertDI(VarSP == LocSP, "mismatched subprogram between llvm.dbg." + Kind + 4528 " variable and !dbg attachment", 4529 &DII, BB, F, Var, Var->getScope()->getSubprogram(), Loc, 4530 Loc->getScope()->getSubprogram()); 4531 4532 verifyFnArgs(DII); 4533 } 4534 4535 void Verifier::visitDbgLabelIntrinsic(StringRef Kind, DbgLabelInst &DLI) { 4536 AssertDI(isa<DILabel>(DLI.getRawLabel()), 4537 "invalid llvm.dbg." + Kind + " intrinsic variable", &DLI, 4538 DLI.getRawLabel()); 4539 4540 // Ignore broken !dbg attachments; they're checked elsewhere. 4541 if (MDNode *N = DLI.getDebugLoc().getAsMDNode()) 4542 if (!isa<DILocation>(N)) 4543 return; 4544 4545 BasicBlock *BB = DLI.getParent(); 4546 Function *F = BB ? BB->getParent() : nullptr; 4547 4548 // The scopes for variables and !dbg attachments must agree. 4549 DILabel *Label = DLI.getLabel(); 4550 DILocation *Loc = DLI.getDebugLoc(); 4551 Assert(Loc, "llvm.dbg." + Kind + " intrinsic requires a !dbg attachment", 4552 &DLI, BB, F); 4553 4554 DISubprogram *LabelSP = getSubprogram(Label->getRawScope()); 4555 DISubprogram *LocSP = getSubprogram(Loc->getRawScope()); 4556 if (!LabelSP || !LocSP) 4557 return; 4558 4559 AssertDI(LabelSP == LocSP, "mismatched subprogram between llvm.dbg." + Kind + 4560 " label and !dbg attachment", 4561 &DLI, BB, F, Label, Label->getScope()->getSubprogram(), Loc, 4562 Loc->getScope()->getSubprogram()); 4563 } 4564 4565 void Verifier::verifyFragmentExpression(const DbgVariableIntrinsic &I) { 4566 DILocalVariable *V = dyn_cast_or_null<DILocalVariable>(I.getRawVariable()); 4567 DIExpression *E = dyn_cast_or_null<DIExpression>(I.getRawExpression()); 4568 4569 // We don't know whether this intrinsic verified correctly. 4570 if (!V || !E || !E->isValid()) 4571 return; 4572 4573 // Nothing to do if this isn't a DW_OP_LLVM_fragment expression. 4574 auto Fragment = E->getFragmentInfo(); 4575 if (!Fragment) 4576 return; 4577 4578 // The frontend helps out GDB by emitting the members of local anonymous 4579 // unions as artificial local variables with shared storage. When SROA splits 4580 // the storage for artificial local variables that are smaller than the entire 4581 // union, the overhang piece will be outside of the allotted space for the 4582 // variable and this check fails. 4583 // FIXME: Remove this check as soon as clang stops doing this; it hides bugs. 4584 if (V->isArtificial()) 4585 return; 4586 4587 verifyFragmentExpression(*V, *Fragment, &I); 4588 } 4589 4590 template <typename ValueOrMetadata> 4591 void Verifier::verifyFragmentExpression(const DIVariable &V, 4592 DIExpression::FragmentInfo Fragment, 4593 ValueOrMetadata *Desc) { 4594 // If there's no size, the type is broken, but that should be checked 4595 // elsewhere. 4596 auto VarSize = V.getSizeInBits(); 4597 if (!VarSize) 4598 return; 4599 4600 unsigned FragSize = Fragment.SizeInBits; 4601 unsigned FragOffset = Fragment.OffsetInBits; 4602 AssertDI(FragSize + FragOffset <= *VarSize, 4603 "fragment is larger than or outside of variable", Desc, &V); 4604 AssertDI(FragSize != *VarSize, "fragment covers entire variable", Desc, &V); 4605 } 4606 4607 void Verifier::verifyFnArgs(const DbgVariableIntrinsic &I) { 4608 // This function does not take the scope of noninlined function arguments into 4609 // account. Don't run it if current function is nodebug, because it may 4610 // contain inlined debug intrinsics. 4611 if (!HasDebugInfo) 4612 return; 4613 4614 // For performance reasons only check non-inlined ones. 4615 if (I.getDebugLoc()->getInlinedAt()) 4616 return; 4617 4618 DILocalVariable *Var = I.getVariable(); 4619 AssertDI(Var, "dbg intrinsic without variable"); 4620 4621 unsigned ArgNo = Var->getArg(); 4622 if (!ArgNo) 4623 return; 4624 4625 // Verify there are no duplicate function argument debug info entries. 4626 // These will cause hard-to-debug assertions in the DWARF backend. 4627 if (DebugFnArgs.size() < ArgNo) 4628 DebugFnArgs.resize(ArgNo, nullptr); 4629 4630 auto *Prev = DebugFnArgs[ArgNo - 1]; 4631 DebugFnArgs[ArgNo - 1] = Var; 4632 AssertDI(!Prev || (Prev == Var), "conflicting debug info for argument", &I, 4633 Prev, Var); 4634 } 4635 4636 void Verifier::verifyCompileUnits() { 4637 // When more than one Module is imported into the same context, such as during 4638 // an LTO build before linking the modules, ODR type uniquing may cause types 4639 // to point to a different CU. This check does not make sense in this case. 4640 if (M.getContext().isODRUniquingDebugTypes()) 4641 return; 4642 auto *CUs = M.getNamedMetadata("llvm.dbg.cu"); 4643 SmallPtrSet<const Metadata *, 2> Listed; 4644 if (CUs) 4645 Listed.insert(CUs->op_begin(), CUs->op_end()); 4646 for (auto *CU : CUVisited) 4647 AssertDI(Listed.count(CU), "DICompileUnit not listed in llvm.dbg.cu", CU); 4648 CUVisited.clear(); 4649 } 4650 4651 void Verifier::verifyDeoptimizeCallingConvs() { 4652 if (DeoptimizeDeclarations.empty()) 4653 return; 4654 4655 const Function *First = DeoptimizeDeclarations[0]; 4656 for (auto *F : makeArrayRef(DeoptimizeDeclarations).slice(1)) { 4657 Assert(First->getCallingConv() == F->getCallingConv(), 4658 "All llvm.experimental.deoptimize declarations must have the same " 4659 "calling convention", 4660 First, F); 4661 } 4662 } 4663 4664 //===----------------------------------------------------------------------===// 4665 // Implement the public interfaces to this file... 4666 //===----------------------------------------------------------------------===// 4667 4668 bool llvm::verifyFunction(const Function &f, raw_ostream *OS) { 4669 Function &F = const_cast<Function &>(f); 4670 4671 // Don't use a raw_null_ostream. Printing IR is expensive. 4672 Verifier V(OS, /*ShouldTreatBrokenDebugInfoAsError=*/true, *f.getParent()); 4673 4674 // Note that this function's return value is inverted from what you would 4675 // expect of a function called "verify". 4676 return !V.verify(F); 4677 } 4678 4679 bool llvm::verifyModule(const Module &M, raw_ostream *OS, 4680 bool *BrokenDebugInfo) { 4681 // Don't use a raw_null_ostream. Printing IR is expensive. 4682 Verifier V(OS, /*ShouldTreatBrokenDebugInfoAsError=*/!BrokenDebugInfo, M); 4683 4684 bool Broken = false; 4685 for (const Function &F : M) 4686 Broken |= !V.verify(F); 4687 4688 Broken |= !V.verify(); 4689 if (BrokenDebugInfo) 4690 *BrokenDebugInfo = V.hasBrokenDebugInfo(); 4691 // Note that this function's return value is inverted from what you would 4692 // expect of a function called "verify". 4693 return Broken; 4694 } 4695 4696 namespace { 4697 4698 struct VerifierLegacyPass : public FunctionPass { 4699 static char ID; 4700 4701 std::unique_ptr<Verifier> V; 4702 bool FatalErrors = true; 4703 4704 VerifierLegacyPass() : FunctionPass(ID) { 4705 initializeVerifierLegacyPassPass(*PassRegistry::getPassRegistry()); 4706 } 4707 explicit VerifierLegacyPass(bool FatalErrors) 4708 : FunctionPass(ID), 4709 FatalErrors(FatalErrors) { 4710 initializeVerifierLegacyPassPass(*PassRegistry::getPassRegistry()); 4711 } 4712 4713 bool doInitialization(Module &M) override { 4714 V = llvm::make_unique<Verifier>( 4715 &dbgs(), /*ShouldTreatBrokenDebugInfoAsError=*/false, M); 4716 return false; 4717 } 4718 4719 bool runOnFunction(Function &F) override { 4720 if (!V->verify(F) && FatalErrors) 4721 report_fatal_error("Broken function found, compilation aborted!"); 4722 4723 return false; 4724 } 4725 4726 bool doFinalization(Module &M) override { 4727 bool HasErrors = false; 4728 for (Function &F : M) 4729 if (F.isDeclaration()) 4730 HasErrors |= !V->verify(F); 4731 4732 HasErrors |= !V->verify(); 4733 if (FatalErrors && (HasErrors || V->hasBrokenDebugInfo())) 4734 report_fatal_error("Broken module found, compilation aborted!"); 4735 return false; 4736 } 4737 4738 void getAnalysisUsage(AnalysisUsage &AU) const override { 4739 AU.setPreservesAll(); 4740 } 4741 }; 4742 4743 } // end anonymous namespace 4744 4745 /// Helper to issue failure from the TBAA verification 4746 template <typename... Tys> void TBAAVerifier::CheckFailed(Tys &&... Args) { 4747 if (Diagnostic) 4748 return Diagnostic->CheckFailed(Args...); 4749 } 4750 4751 #define AssertTBAA(C, ...) \ 4752 do { \ 4753 if (!(C)) { \ 4754 CheckFailed(__VA_ARGS__); \ 4755 return false; \ 4756 } \ 4757 } while (false) 4758 4759 /// Verify that \p BaseNode can be used as the "base type" in the struct-path 4760 /// TBAA scheme. This means \p BaseNode is either a scalar node, or a 4761 /// struct-type node describing an aggregate data structure (like a struct). 4762 TBAAVerifier::TBAABaseNodeSummary 4763 TBAAVerifier::verifyTBAABaseNode(Instruction &I, const MDNode *BaseNode, 4764 bool IsNewFormat) { 4765 if (BaseNode->getNumOperands() < 2) { 4766 CheckFailed("Base nodes must have at least two operands", &I, BaseNode); 4767 return {true, ~0u}; 4768 } 4769 4770 auto Itr = TBAABaseNodes.find(BaseNode); 4771 if (Itr != TBAABaseNodes.end()) 4772 return Itr->second; 4773 4774 auto Result = verifyTBAABaseNodeImpl(I, BaseNode, IsNewFormat); 4775 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result}); 4776 (void)InsertResult; 4777 assert(InsertResult.second && "We just checked!"); 4778 return Result; 4779 } 4780 4781 TBAAVerifier::TBAABaseNodeSummary 4782 TBAAVerifier::verifyTBAABaseNodeImpl(Instruction &I, const MDNode *BaseNode, 4783 bool IsNewFormat) { 4784 const TBAAVerifier::TBAABaseNodeSummary InvalidNode = {true, ~0u}; 4785 4786 if (BaseNode->getNumOperands() == 2) { 4787 // Scalar nodes can only be accessed at offset 0. 4788 return isValidScalarTBAANode(BaseNode) 4789 ? TBAAVerifier::TBAABaseNodeSummary({false, 0}) 4790 : InvalidNode; 4791 } 4792 4793 if (IsNewFormat) { 4794 if (BaseNode->getNumOperands() % 3 != 0) { 4795 CheckFailed("Access tag nodes must have the number of operands that is a " 4796 "multiple of 3!", BaseNode); 4797 return InvalidNode; 4798 } 4799 } else { 4800 if (BaseNode->getNumOperands() % 2 != 1) { 4801 CheckFailed("Struct tag nodes must have an odd number of operands!", 4802 BaseNode); 4803 return InvalidNode; 4804 } 4805 } 4806 4807 // Check the type size field. 4808 if (IsNewFormat) { 4809 auto *TypeSizeNode = mdconst::dyn_extract_or_null<ConstantInt>( 4810 BaseNode->getOperand(1)); 4811 if (!TypeSizeNode) { 4812 CheckFailed("Type size nodes must be constants!", &I, BaseNode); 4813 return InvalidNode; 4814 } 4815 } 4816 4817 // Check the type name field. In the new format it can be anything. 4818 if (!IsNewFormat && !isa<MDString>(BaseNode->getOperand(0))) { 4819 CheckFailed("Struct tag nodes have a string as their first operand", 4820 BaseNode); 4821 return InvalidNode; 4822 } 4823 4824 bool Failed = false; 4825 4826 Optional<APInt> PrevOffset; 4827 unsigned BitWidth = ~0u; 4828 4829 // We've already checked that BaseNode is not a degenerate root node with one 4830 // operand in \c verifyTBAABaseNode, so this loop should run at least once. 4831 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1; 4832 unsigned NumOpsPerField = IsNewFormat ? 3 : 2; 4833 for (unsigned Idx = FirstFieldOpNo; Idx < BaseNode->getNumOperands(); 4834 Idx += NumOpsPerField) { 4835 const MDOperand &FieldTy = BaseNode->getOperand(Idx); 4836 const MDOperand &FieldOffset = BaseNode->getOperand(Idx + 1); 4837 if (!isa<MDNode>(FieldTy)) { 4838 CheckFailed("Incorrect field entry in struct type node!", &I, BaseNode); 4839 Failed = true; 4840 continue; 4841 } 4842 4843 auto *OffsetEntryCI = 4844 mdconst::dyn_extract_or_null<ConstantInt>(FieldOffset); 4845 if (!OffsetEntryCI) { 4846 CheckFailed("Offset entries must be constants!", &I, BaseNode); 4847 Failed = true; 4848 continue; 4849 } 4850 4851 if (BitWidth == ~0u) 4852 BitWidth = OffsetEntryCI->getBitWidth(); 4853 4854 if (OffsetEntryCI->getBitWidth() != BitWidth) { 4855 CheckFailed( 4856 "Bitwidth between the offsets and struct type entries must match", &I, 4857 BaseNode); 4858 Failed = true; 4859 continue; 4860 } 4861 4862 // NB! As far as I can tell, we generate a non-strictly increasing offset 4863 // sequence only from structs that have zero size bit fields. When 4864 // recursing into a contained struct in \c getFieldNodeFromTBAABaseNode we 4865 // pick the field lexically the latest in struct type metadata node. This 4866 // mirrors the actual behavior of the alias analysis implementation. 4867 bool IsAscending = 4868 !PrevOffset || PrevOffset->ule(OffsetEntryCI->getValue()); 4869 4870 if (!IsAscending) { 4871 CheckFailed("Offsets must be increasing!", &I, BaseNode); 4872 Failed = true; 4873 } 4874 4875 PrevOffset = OffsetEntryCI->getValue(); 4876 4877 if (IsNewFormat) { 4878 auto *MemberSizeNode = mdconst::dyn_extract_or_null<ConstantInt>( 4879 BaseNode->getOperand(Idx + 2)); 4880 if (!MemberSizeNode) { 4881 CheckFailed("Member size entries must be constants!", &I, BaseNode); 4882 Failed = true; 4883 continue; 4884 } 4885 } 4886 } 4887 4888 return Failed ? InvalidNode 4889 : TBAAVerifier::TBAABaseNodeSummary(false, BitWidth); 4890 } 4891 4892 static bool IsRootTBAANode(const MDNode *MD) { 4893 return MD->getNumOperands() < 2; 4894 } 4895 4896 static bool IsScalarTBAANodeImpl(const MDNode *MD, 4897 SmallPtrSetImpl<const MDNode *> &Visited) { 4898 if (MD->getNumOperands() != 2 && MD->getNumOperands() != 3) 4899 return false; 4900 4901 if (!isa<MDString>(MD->getOperand(0))) 4902 return false; 4903 4904 if (MD->getNumOperands() == 3) { 4905 auto *Offset = mdconst::dyn_extract<ConstantInt>(MD->getOperand(2)); 4906 if (!(Offset && Offset->isZero() && isa<MDString>(MD->getOperand(0)))) 4907 return false; 4908 } 4909 4910 auto *Parent = dyn_cast_or_null<MDNode>(MD->getOperand(1)); 4911 return Parent && Visited.insert(Parent).second && 4912 (IsRootTBAANode(Parent) || IsScalarTBAANodeImpl(Parent, Visited)); 4913 } 4914 4915 bool TBAAVerifier::isValidScalarTBAANode(const MDNode *MD) { 4916 auto ResultIt = TBAAScalarNodes.find(MD); 4917 if (ResultIt != TBAAScalarNodes.end()) 4918 return ResultIt->second; 4919 4920 SmallPtrSet<const MDNode *, 4> Visited; 4921 bool Result = IsScalarTBAANodeImpl(MD, Visited); 4922 auto InsertResult = TBAAScalarNodes.insert({MD, Result}); 4923 (void)InsertResult; 4924 assert(InsertResult.second && "Just checked!"); 4925 4926 return Result; 4927 } 4928 4929 /// Returns the field node at the offset \p Offset in \p BaseNode. Update \p 4930 /// Offset in place to be the offset within the field node returned. 4931 /// 4932 /// We assume we've okayed \p BaseNode via \c verifyTBAABaseNode. 4933 MDNode *TBAAVerifier::getFieldNodeFromTBAABaseNode(Instruction &I, 4934 const MDNode *BaseNode, 4935 APInt &Offset, 4936 bool IsNewFormat) { 4937 assert(BaseNode->getNumOperands() >= 2 && "Invalid base node!"); 4938 4939 // Scalar nodes have only one possible "field" -- their parent in the access 4940 // hierarchy. Offset must be zero at this point, but our caller is supposed 4941 // to Assert that. 4942 if (BaseNode->getNumOperands() == 2) 4943 return cast<MDNode>(BaseNode->getOperand(1)); 4944 4945 unsigned FirstFieldOpNo = IsNewFormat ? 3 : 1; 4946 unsigned NumOpsPerField = IsNewFormat ? 3 : 2; 4947 for (unsigned Idx = FirstFieldOpNo; Idx < BaseNode->getNumOperands(); 4948 Idx += NumOpsPerField) { 4949 auto *OffsetEntryCI = 4950 mdconst::extract<ConstantInt>(BaseNode->getOperand(Idx + 1)); 4951 if (OffsetEntryCI->getValue().ugt(Offset)) { 4952 if (Idx == FirstFieldOpNo) { 4953 CheckFailed("Could not find TBAA parent in struct type node", &I, 4954 BaseNode, &Offset); 4955 return nullptr; 4956 } 4957 4958 unsigned PrevIdx = Idx - NumOpsPerField; 4959 auto *PrevOffsetEntryCI = 4960 mdconst::extract<ConstantInt>(BaseNode->getOperand(PrevIdx + 1)); 4961 Offset -= PrevOffsetEntryCI->getValue(); 4962 return cast<MDNode>(BaseNode->getOperand(PrevIdx)); 4963 } 4964 } 4965 4966 unsigned LastIdx = BaseNode->getNumOperands() - NumOpsPerField; 4967 auto *LastOffsetEntryCI = mdconst::extract<ConstantInt>( 4968 BaseNode->getOperand(LastIdx + 1)); 4969 Offset -= LastOffsetEntryCI->getValue(); 4970 return cast<MDNode>(BaseNode->getOperand(LastIdx)); 4971 } 4972 4973 static bool isNewFormatTBAATypeNode(llvm::MDNode *Type) { 4974 if (!Type || Type->getNumOperands() < 3) 4975 return false; 4976 4977 // In the new format type nodes shall have a reference to the parent type as 4978 // its first operand. 4979 MDNode *Parent = dyn_cast_or_null<MDNode>(Type->getOperand(0)); 4980 if (!Parent) 4981 return false; 4982 4983 return true; 4984 } 4985 4986 bool TBAAVerifier::visitTBAAMetadata(Instruction &I, const MDNode *MD) { 4987 AssertTBAA(isa<LoadInst>(I) || isa<StoreInst>(I) || isa<CallInst>(I) || 4988 isa<VAArgInst>(I) || isa<AtomicRMWInst>(I) || 4989 isa<AtomicCmpXchgInst>(I), 4990 "This instruction shall not have a TBAA access tag!", &I); 4991 4992 bool IsStructPathTBAA = 4993 isa<MDNode>(MD->getOperand(0)) && MD->getNumOperands() >= 3; 4994 4995 AssertTBAA( 4996 IsStructPathTBAA, 4997 "Old-style TBAA is no longer allowed, use struct-path TBAA instead", &I); 4998 4999 MDNode *BaseNode = dyn_cast_or_null<MDNode>(MD->getOperand(0)); 5000 MDNode *AccessType = dyn_cast_or_null<MDNode>(MD->getOperand(1)); 5001 5002 bool IsNewFormat = isNewFormatTBAATypeNode(AccessType); 5003 5004 if (IsNewFormat) { 5005 AssertTBAA(MD->getNumOperands() == 4 || MD->getNumOperands() == 5, 5006 "Access tag metadata must have either 4 or 5 operands", &I, MD); 5007 } else { 5008 AssertTBAA(MD->getNumOperands() < 5, 5009 "Struct tag metadata must have either 3 or 4 operands", &I, MD); 5010 } 5011 5012 // Check the access size field. 5013 if (IsNewFormat) { 5014 auto *AccessSizeNode = mdconst::dyn_extract_or_null<ConstantInt>( 5015 MD->getOperand(3)); 5016 AssertTBAA(AccessSizeNode, "Access size field must be a constant", &I, MD); 5017 } 5018 5019 // Check the immutability flag. 5020 unsigned ImmutabilityFlagOpNo = IsNewFormat ? 4 : 3; 5021 if (MD->getNumOperands() == ImmutabilityFlagOpNo + 1) { 5022 auto *IsImmutableCI = mdconst::dyn_extract_or_null<ConstantInt>( 5023 MD->getOperand(ImmutabilityFlagOpNo)); 5024 AssertTBAA(IsImmutableCI, 5025 "Immutability tag on struct tag metadata must be a constant", 5026 &I, MD); 5027 AssertTBAA( 5028 IsImmutableCI->isZero() || IsImmutableCI->isOne(), 5029 "Immutability part of the struct tag metadata must be either 0 or 1", 5030 &I, MD); 5031 } 5032 5033 AssertTBAA(BaseNode && AccessType, 5034 "Malformed struct tag metadata: base and access-type " 5035 "should be non-null and point to Metadata nodes", 5036 &I, MD, BaseNode, AccessType); 5037 5038 if (!IsNewFormat) { 5039 AssertTBAA(isValidScalarTBAANode(AccessType), 5040 "Access type node must be a valid scalar type", &I, MD, 5041 AccessType); 5042 } 5043 5044 auto *OffsetCI = mdconst::dyn_extract_or_null<ConstantInt>(MD->getOperand(2)); 5045 AssertTBAA(OffsetCI, "Offset must be constant integer", &I, MD); 5046 5047 APInt Offset = OffsetCI->getValue(); 5048 bool SeenAccessTypeInPath = false; 5049 5050 SmallPtrSet<MDNode *, 4> StructPath; 5051 5052 for (/* empty */; BaseNode && !IsRootTBAANode(BaseNode); 5053 BaseNode = getFieldNodeFromTBAABaseNode(I, BaseNode, Offset, 5054 IsNewFormat)) { 5055 if (!StructPath.insert(BaseNode).second) { 5056 CheckFailed("Cycle detected in struct path", &I, MD); 5057 return false; 5058 } 5059 5060 bool Invalid; 5061 unsigned BaseNodeBitWidth; 5062 std::tie(Invalid, BaseNodeBitWidth) = verifyTBAABaseNode(I, BaseNode, 5063 IsNewFormat); 5064 5065 // If the base node is invalid in itself, then we've already printed all the 5066 // errors we wanted to print. 5067 if (Invalid) 5068 return false; 5069 5070 SeenAccessTypeInPath |= BaseNode == AccessType; 5071 5072 if (isValidScalarTBAANode(BaseNode) || BaseNode == AccessType) 5073 AssertTBAA(Offset == 0, "Offset not zero at the point of scalar access", 5074 &I, MD, &Offset); 5075 5076 AssertTBAA(BaseNodeBitWidth == Offset.getBitWidth() || 5077 (BaseNodeBitWidth == 0 && Offset == 0) || 5078 (IsNewFormat && BaseNodeBitWidth == ~0u), 5079 "Access bit-width not the same as description bit-width", &I, MD, 5080 BaseNodeBitWidth, Offset.getBitWidth()); 5081 5082 if (IsNewFormat && SeenAccessTypeInPath) 5083 break; 5084 } 5085 5086 AssertTBAA(SeenAccessTypeInPath, "Did not see access type in access path!", 5087 &I, MD); 5088 return true; 5089 } 5090 5091 char VerifierLegacyPass::ID = 0; 5092 INITIALIZE_PASS(VerifierLegacyPass, "verify", "Module Verifier", false, false) 5093 5094 FunctionPass *llvm::createVerifierPass(bool FatalErrors) { 5095 return new VerifierLegacyPass(FatalErrors); 5096 } 5097 5098 AnalysisKey VerifierAnalysis::Key; 5099 VerifierAnalysis::Result VerifierAnalysis::run(Module &M, 5100 ModuleAnalysisManager &) { 5101 Result Res; 5102 Res.IRBroken = llvm::verifyModule(M, &dbgs(), &Res.DebugInfoBroken); 5103 return Res; 5104 } 5105 5106 VerifierAnalysis::Result VerifierAnalysis::run(Function &F, 5107 FunctionAnalysisManager &) { 5108 return { llvm::verifyFunction(F, &dbgs()), false }; 5109 } 5110 5111 PreservedAnalyses VerifierPass::run(Module &M, ModuleAnalysisManager &AM) { 5112 auto Res = AM.getResult<VerifierAnalysis>(M); 5113 if (FatalErrors && (Res.IRBroken || Res.DebugInfoBroken)) 5114 report_fatal_error("Broken module found, compilation aborted!"); 5115 5116 return PreservedAnalyses::all(); 5117 } 5118 5119 PreservedAnalyses VerifierPass::run(Function &F, FunctionAnalysisManager &AM) { 5120 auto res = AM.getResult<VerifierAnalysis>(F); 5121 if (res.IRBroken && FatalErrors) 5122 report_fatal_error("Broken function found, compilation aborted!"); 5123 5124 return PreservedAnalyses::all(); 5125 } 5126