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