Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
[oota-llvm.git] / include / llvm / IR / Instructions.h
1 //===-- llvm/Instructions.h - Instruction subclass definitions --*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file exposes the class definitions of all of the subclasses of the
11 // Instruction class.  This is meant to be an easy way to get access to all
12 // instruction subclasses.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_IR_INSTRUCTIONS_H
17 #define LLVM_IR_INSTRUCTIONS_H
18
19 #include "llvm/ADT/ArrayRef.h"
20 #include "llvm/ADT/SmallVector.h"
21 #include "llvm/ADT/iterator_range.h"
22 #include "llvm/IR/Attributes.h"
23 #include "llvm/IR/CallingConv.h"
24 #include "llvm/IR/DerivedTypes.h"
25 #include "llvm/IR/InstrTypes.h"
26 #include "llvm/Support/ErrorHandling.h"
27 #include <iterator>
28
29 namespace llvm {
30
31 class APInt;
32 class ConstantInt;
33 class ConstantRange;
34 class DataLayout;
35 class LLVMContext;
36
37 enum AtomicOrdering {
38   NotAtomic = 0,
39   Unordered = 1,
40   Monotonic = 2,
41   // Consume = 3,  // Not specified yet.
42   Acquire = 4,
43   Release = 5,
44   AcquireRelease = 6,
45   SequentiallyConsistent = 7
46 };
47
48 enum SynchronizationScope {
49   SingleThread = 0,
50   CrossThread = 1
51 };
52
53 /// Returns true if the ordering is at least as strong as acquire
54 /// (i.e. acquire, acq_rel or seq_cst)
55 inline bool isAtLeastAcquire(AtomicOrdering Ord) {
56    return (Ord == Acquire ||
57     Ord == AcquireRelease ||
58     Ord == SequentiallyConsistent);
59 }
60
61 /// Returns true if the ordering is at least as strong as release
62 /// (i.e. release, acq_rel or seq_cst)
63 inline bool isAtLeastRelease(AtomicOrdering Ord) {
64 return (Ord == Release ||
65     Ord == AcquireRelease ||
66     Ord == SequentiallyConsistent);
67 }
68
69 //===----------------------------------------------------------------------===//
70 //                                AllocaInst Class
71 //===----------------------------------------------------------------------===//
72
73 /// AllocaInst - an instruction to allocate memory on the stack
74 ///
75 class AllocaInst : public UnaryInstruction {
76   Type *AllocatedType;
77
78 protected:
79   AllocaInst *clone_impl() const override;
80 public:
81   explicit AllocaInst(Type *Ty, Value *ArraySize = nullptr,
82                       const Twine &Name = "",
83                       Instruction *InsertBefore = nullptr);
84   AllocaInst(Type *Ty, Value *ArraySize,
85              const Twine &Name, BasicBlock *InsertAtEnd);
86
87   AllocaInst(Type *Ty, const Twine &Name, Instruction *InsertBefore = nullptr);
88   AllocaInst(Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd);
89
90   AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
91              const Twine &Name = "", Instruction *InsertBefore = nullptr);
92   AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
93              const Twine &Name, BasicBlock *InsertAtEnd);
94
95   // Out of line virtual method, so the vtable, etc. has a home.
96   ~AllocaInst() override;
97
98   /// isArrayAllocation - Return true if there is an allocation size parameter
99   /// to the allocation instruction that is not 1.
100   ///
101   bool isArrayAllocation() const;
102
103   /// getArraySize - Get the number of elements allocated. For a simple
104   /// allocation of a single element, this will return a constant 1 value.
105   ///
106   const Value *getArraySize() const { return getOperand(0); }
107   Value *getArraySize() { return getOperand(0); }
108
109   /// getType - Overload to return most specific pointer type
110   ///
111   PointerType *getType() const {
112     return cast<PointerType>(Instruction::getType());
113   }
114
115   /// getAllocatedType - Return the type that is being allocated by the
116   /// instruction.
117   ///
118   Type *getAllocatedType() const { return AllocatedType; }
119   /// \brief for use only in special circumstances that need to generically
120   /// transform a whole instruction (eg: IR linking and vectorization).
121   void setAllocatedType(Type *Ty) { AllocatedType = Ty; }
122
123   /// getAlignment - Return the alignment of the memory that is being allocated
124   /// by the instruction.
125   ///
126   unsigned getAlignment() const {
127     return (1u << (getSubclassDataFromInstruction() & 31)) >> 1;
128   }
129   void setAlignment(unsigned Align);
130
131   /// isStaticAlloca - Return true if this alloca is in the entry block of the
132   /// function and is a constant size.  If so, the code generator will fold it
133   /// into the prolog/epilog code, so it is basically free.
134   bool isStaticAlloca() const;
135
136   /// \brief Return true if this alloca is used as an inalloca argument to a
137   /// call.  Such allocas are never considered static even if they are in the
138   /// entry block.
139   bool isUsedWithInAlloca() const {
140     return getSubclassDataFromInstruction() & 32;
141   }
142
143   /// \brief Specify whether this alloca is used to represent the arguments to
144   /// a call.
145   void setUsedWithInAlloca(bool V) {
146     setInstructionSubclassData((getSubclassDataFromInstruction() & ~32) |
147                                (V ? 32 : 0));
148   }
149
150   // Methods for support type inquiry through isa, cast, and dyn_cast:
151   static inline bool classof(const Instruction *I) {
152     return (I->getOpcode() == Instruction::Alloca);
153   }
154   static inline bool classof(const Value *V) {
155     return isa<Instruction>(V) && classof(cast<Instruction>(V));
156   }
157 private:
158   // Shadow Instruction::setInstructionSubclassData with a private forwarding
159   // method so that subclasses cannot accidentally use it.
160   void setInstructionSubclassData(unsigned short D) {
161     Instruction::setInstructionSubclassData(D);
162   }
163 };
164
165
166 //===----------------------------------------------------------------------===//
167 //                                LoadInst Class
168 //===----------------------------------------------------------------------===//
169
170 /// LoadInst - an instruction for reading from memory.  This uses the
171 /// SubclassData field in Value to store whether or not the load is volatile.
172 ///
173 class LoadInst : public UnaryInstruction {
174   void AssertOK();
175 protected:
176   LoadInst *clone_impl() const override;
177 public:
178   LoadInst(Value *Ptr, const Twine &NameStr, Instruction *InsertBefore);
179   LoadInst(Value *Ptr, const Twine &NameStr, BasicBlock *InsertAtEnd);
180   LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile = false,
181            Instruction *InsertBefore = nullptr);
182   LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile = false,
183            Instruction *InsertBefore = nullptr)
184       : LoadInst(cast<PointerType>(Ptr->getType())->getElementType(), Ptr,
185                  NameStr, isVolatile, InsertBefore) {}
186   LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
187            BasicBlock *InsertAtEnd);
188   LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile, unsigned Align,
189            Instruction *InsertBefore = nullptr)
190       : LoadInst(cast<PointerType>(Ptr->getType())->getElementType(), Ptr,
191                  NameStr, isVolatile, Align, InsertBefore) {}
192   LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
193            unsigned Align, Instruction *InsertBefore = nullptr);
194   LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
195            unsigned Align, BasicBlock *InsertAtEnd);
196   LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile, unsigned Align,
197            AtomicOrdering Order, SynchronizationScope SynchScope = CrossThread,
198            Instruction *InsertBefore = nullptr)
199       : LoadInst(cast<PointerType>(Ptr->getType())->getElementType(), Ptr,
200                  NameStr, isVolatile, Align, Order, SynchScope, InsertBefore) {}
201   LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
202            unsigned Align, AtomicOrdering Order,
203            SynchronizationScope SynchScope = CrossThread,
204            Instruction *InsertBefore = nullptr);
205   LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
206            unsigned Align, AtomicOrdering Order,
207            SynchronizationScope SynchScope,
208            BasicBlock *InsertAtEnd);
209
210   LoadInst(Value *Ptr, const char *NameStr, Instruction *InsertBefore);
211   LoadInst(Value *Ptr, const char *NameStr, BasicBlock *InsertAtEnd);
212   LoadInst(Type *Ty, Value *Ptr, const char *NameStr = nullptr,
213            bool isVolatile = false, Instruction *InsertBefore = nullptr);
214   explicit LoadInst(Value *Ptr, const char *NameStr = nullptr,
215                     bool isVolatile = false,
216                     Instruction *InsertBefore = nullptr)
217       : LoadInst(cast<PointerType>(Ptr->getType())->getElementType(), Ptr,
218                  NameStr, isVolatile, InsertBefore) {}
219   LoadInst(Value *Ptr, const char *NameStr, bool isVolatile,
220            BasicBlock *InsertAtEnd);
221
222   /// isVolatile - Return true if this is a load from a volatile memory
223   /// location.
224   ///
225   bool isVolatile() const { return getSubclassDataFromInstruction() & 1; }
226
227   /// setVolatile - Specify whether this is a volatile load or not.
228   ///
229   void setVolatile(bool V) {
230     setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
231                                (V ? 1 : 0));
232   }
233
234   /// getAlignment - Return the alignment of the access that is being performed
235   ///
236   unsigned getAlignment() const {
237     return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1;
238   }
239
240   void setAlignment(unsigned Align);
241
242   /// Returns the ordering effect of this fence.
243   AtomicOrdering getOrdering() const {
244     return AtomicOrdering((getSubclassDataFromInstruction() >> 7) & 7);
245   }
246
247   /// Set the ordering constraint on this load. May not be Release or
248   /// AcquireRelease.
249   void setOrdering(AtomicOrdering Ordering) {
250     setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 7)) |
251                                (Ordering << 7));
252   }
253
254   SynchronizationScope getSynchScope() const {
255     return SynchronizationScope((getSubclassDataFromInstruction() >> 6) & 1);
256   }
257
258   /// Specify whether this load is ordered with respect to all
259   /// concurrently executing threads, or only with respect to signal handlers
260   /// executing in the same thread.
261   void setSynchScope(SynchronizationScope xthread) {
262     setInstructionSubclassData((getSubclassDataFromInstruction() & ~(1 << 6)) |
263                                (xthread << 6));
264   }
265
266   void setAtomic(AtomicOrdering Ordering,
267                  SynchronizationScope SynchScope = CrossThread) {
268     setOrdering(Ordering);
269     setSynchScope(SynchScope);
270   }
271
272   bool isSimple() const { return !isAtomic() && !isVolatile(); }
273   bool isUnordered() const {
274     return getOrdering() <= Unordered && !isVolatile();
275   }
276
277   Value *getPointerOperand() { return getOperand(0); }
278   const Value *getPointerOperand() const { return getOperand(0); }
279   static unsigned getPointerOperandIndex() { return 0U; }
280
281   /// \brief Returns the address space of the pointer operand.
282   unsigned getPointerAddressSpace() const {
283     return getPointerOperand()->getType()->getPointerAddressSpace();
284   }
285
286
287   // Methods for support type inquiry through isa, cast, and dyn_cast:
288   static inline bool classof(const Instruction *I) {
289     return I->getOpcode() == Instruction::Load;
290   }
291   static inline bool classof(const Value *V) {
292     return isa<Instruction>(V) && classof(cast<Instruction>(V));
293   }
294 private:
295   // Shadow Instruction::setInstructionSubclassData with a private forwarding
296   // method so that subclasses cannot accidentally use it.
297   void setInstructionSubclassData(unsigned short D) {
298     Instruction::setInstructionSubclassData(D);
299   }
300 };
301
302
303 //===----------------------------------------------------------------------===//
304 //                                StoreInst Class
305 //===----------------------------------------------------------------------===//
306
307 /// StoreInst - an instruction for storing to memory
308 ///
309 class StoreInst : public Instruction {
310   void *operator new(size_t, unsigned) = delete;
311   void AssertOK();
312 protected:
313   StoreInst *clone_impl() const override;
314 public:
315   // allocate space for exactly two operands
316   void *operator new(size_t s) {
317     return User::operator new(s, 2);
318   }
319   StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore);
320   StoreInst(Value *Val, Value *Ptr, BasicBlock *InsertAtEnd);
321   StoreInst(Value *Val, Value *Ptr, bool isVolatile = false,
322             Instruction *InsertBefore = nullptr);
323   StoreInst(Value *Val, Value *Ptr, bool isVolatile, BasicBlock *InsertAtEnd);
324   StoreInst(Value *Val, Value *Ptr, bool isVolatile,
325             unsigned Align, Instruction *InsertBefore = nullptr);
326   StoreInst(Value *Val, Value *Ptr, bool isVolatile,
327             unsigned Align, BasicBlock *InsertAtEnd);
328   StoreInst(Value *Val, Value *Ptr, bool isVolatile,
329             unsigned Align, AtomicOrdering Order,
330             SynchronizationScope SynchScope = CrossThread,
331             Instruction *InsertBefore = nullptr);
332   StoreInst(Value *Val, Value *Ptr, bool isVolatile,
333             unsigned Align, AtomicOrdering Order,
334             SynchronizationScope SynchScope,
335             BasicBlock *InsertAtEnd);
336
337
338   /// isVolatile - Return true if this is a store to a volatile memory
339   /// location.
340   ///
341   bool isVolatile() const { return getSubclassDataFromInstruction() & 1; }
342
343   /// setVolatile - Specify whether this is a volatile store or not.
344   ///
345   void setVolatile(bool V) {
346     setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
347                                (V ? 1 : 0));
348   }
349
350   /// Transparently provide more efficient getOperand methods.
351   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
352
353   /// getAlignment - Return the alignment of the access that is being performed
354   ///
355   unsigned getAlignment() const {
356     return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1;
357   }
358
359   void setAlignment(unsigned Align);
360
361   /// Returns the ordering effect of this store.
362   AtomicOrdering getOrdering() const {
363     return AtomicOrdering((getSubclassDataFromInstruction() >> 7) & 7);
364   }
365
366   /// Set the ordering constraint on this store.  May not be Acquire or
367   /// AcquireRelease.
368   void setOrdering(AtomicOrdering Ordering) {
369     setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 7)) |
370                                (Ordering << 7));
371   }
372
373   SynchronizationScope getSynchScope() const {
374     return SynchronizationScope((getSubclassDataFromInstruction() >> 6) & 1);
375   }
376
377   /// Specify whether this store instruction is ordered with respect to all
378   /// concurrently executing threads, or only with respect to signal handlers
379   /// executing in the same thread.
380   void setSynchScope(SynchronizationScope xthread) {
381     setInstructionSubclassData((getSubclassDataFromInstruction() & ~(1 << 6)) |
382                                (xthread << 6));
383   }
384
385   void setAtomic(AtomicOrdering Ordering,
386                  SynchronizationScope SynchScope = CrossThread) {
387     setOrdering(Ordering);
388     setSynchScope(SynchScope);
389   }
390
391   bool isSimple() const { return !isAtomic() && !isVolatile(); }
392   bool isUnordered() const {
393     return getOrdering() <= Unordered && !isVolatile();
394   }
395
396   Value *getValueOperand() { return getOperand(0); }
397   const Value *getValueOperand() const { return getOperand(0); }
398
399   Value *getPointerOperand() { return getOperand(1); }
400   const Value *getPointerOperand() const { return getOperand(1); }
401   static unsigned getPointerOperandIndex() { return 1U; }
402
403   /// \brief Returns the address space of the pointer operand.
404   unsigned getPointerAddressSpace() const {
405     return getPointerOperand()->getType()->getPointerAddressSpace();
406   }
407
408   // Methods for support type inquiry through isa, cast, and dyn_cast:
409   static inline bool classof(const Instruction *I) {
410     return I->getOpcode() == Instruction::Store;
411   }
412   static inline bool classof(const Value *V) {
413     return isa<Instruction>(V) && classof(cast<Instruction>(V));
414   }
415 private:
416   // Shadow Instruction::setInstructionSubclassData with a private forwarding
417   // method so that subclasses cannot accidentally use it.
418   void setInstructionSubclassData(unsigned short D) {
419     Instruction::setInstructionSubclassData(D);
420   }
421 };
422
423 template <>
424 struct OperandTraits<StoreInst> : public FixedNumOperandTraits<StoreInst, 2> {
425 };
426
427 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(StoreInst, Value)
428
429 //===----------------------------------------------------------------------===//
430 //                                FenceInst Class
431 //===----------------------------------------------------------------------===//
432
433 /// FenceInst - an instruction for ordering other memory operations
434 ///
435 class FenceInst : public Instruction {
436   void *operator new(size_t, unsigned) = delete;
437   void Init(AtomicOrdering Ordering, SynchronizationScope SynchScope);
438 protected:
439   FenceInst *clone_impl() const override;
440 public:
441   // allocate space for exactly zero operands
442   void *operator new(size_t s) {
443     return User::operator new(s, 0);
444   }
445
446   // Ordering may only be Acquire, Release, AcquireRelease, or
447   // SequentiallyConsistent.
448   FenceInst(LLVMContext &C, AtomicOrdering Ordering,
449             SynchronizationScope SynchScope = CrossThread,
450             Instruction *InsertBefore = nullptr);
451   FenceInst(LLVMContext &C, AtomicOrdering Ordering,
452             SynchronizationScope SynchScope,
453             BasicBlock *InsertAtEnd);
454
455   /// Returns the ordering effect of this fence.
456   AtomicOrdering getOrdering() const {
457     return AtomicOrdering(getSubclassDataFromInstruction() >> 1);
458   }
459
460   /// Set the ordering constraint on this fence.  May only be Acquire, Release,
461   /// AcquireRelease, or SequentiallyConsistent.
462   void setOrdering(AtomicOrdering Ordering) {
463     setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
464                                (Ordering << 1));
465   }
466
467   SynchronizationScope getSynchScope() const {
468     return SynchronizationScope(getSubclassDataFromInstruction() & 1);
469   }
470
471   /// Specify whether this fence orders other operations with respect to all
472   /// concurrently executing threads, or only with respect to signal handlers
473   /// executing in the same thread.
474   void setSynchScope(SynchronizationScope xthread) {
475     setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
476                                xthread);
477   }
478
479   // Methods for support type inquiry through isa, cast, and dyn_cast:
480   static inline bool classof(const Instruction *I) {
481     return I->getOpcode() == Instruction::Fence;
482   }
483   static inline bool classof(const Value *V) {
484     return isa<Instruction>(V) && classof(cast<Instruction>(V));
485   }
486 private:
487   // Shadow Instruction::setInstructionSubclassData with a private forwarding
488   // method so that subclasses cannot accidentally use it.
489   void setInstructionSubclassData(unsigned short D) {
490     Instruction::setInstructionSubclassData(D);
491   }
492 };
493
494 //===----------------------------------------------------------------------===//
495 //                                AtomicCmpXchgInst Class
496 //===----------------------------------------------------------------------===//
497
498 /// AtomicCmpXchgInst - an instruction that atomically checks whether a
499 /// specified value is in a memory location, and, if it is, stores a new value
500 /// there.  Returns the value that was loaded.
501 ///
502 class AtomicCmpXchgInst : public Instruction {
503   void *operator new(size_t, unsigned) = delete;
504   void Init(Value *Ptr, Value *Cmp, Value *NewVal,
505             AtomicOrdering SuccessOrdering, AtomicOrdering FailureOrdering,
506             SynchronizationScope SynchScope);
507 protected:
508   AtomicCmpXchgInst *clone_impl() const override;
509 public:
510   // allocate space for exactly three operands
511   void *operator new(size_t s) {
512     return User::operator new(s, 3);
513   }
514   AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
515                     AtomicOrdering SuccessOrdering,
516                     AtomicOrdering FailureOrdering,
517                     SynchronizationScope SynchScope,
518                     Instruction *InsertBefore = nullptr);
519   AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
520                     AtomicOrdering SuccessOrdering,
521                     AtomicOrdering FailureOrdering,
522                     SynchronizationScope SynchScope,
523                     BasicBlock *InsertAtEnd);
524
525   /// isVolatile - Return true if this is a cmpxchg from a volatile memory
526   /// location.
527   ///
528   bool isVolatile() const {
529     return getSubclassDataFromInstruction() & 1;
530   }
531
532   /// setVolatile - Specify whether this is a volatile cmpxchg.
533   ///
534   void setVolatile(bool V) {
535      setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
536                                 (unsigned)V);
537   }
538
539   /// Return true if this cmpxchg may spuriously fail.
540   bool isWeak() const {
541     return getSubclassDataFromInstruction() & 0x100;
542   }
543
544   void setWeak(bool IsWeak) {
545     setInstructionSubclassData((getSubclassDataFromInstruction() & ~0x100) |
546                                (IsWeak << 8));
547   }
548
549   /// Transparently provide more efficient getOperand methods.
550   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
551
552   /// Set the ordering constraint on this cmpxchg.
553   void setSuccessOrdering(AtomicOrdering Ordering) {
554     assert(Ordering != NotAtomic &&
555            "CmpXchg instructions can only be atomic.");
556     setInstructionSubclassData((getSubclassDataFromInstruction() & ~0x1c) |
557                                (Ordering << 2));
558   }
559
560   void setFailureOrdering(AtomicOrdering Ordering) {
561     assert(Ordering != NotAtomic &&
562            "CmpXchg instructions can only be atomic.");
563     setInstructionSubclassData((getSubclassDataFromInstruction() & ~0xe0) |
564                                (Ordering << 5));
565   }
566
567   /// Specify whether this cmpxchg is atomic and orders other operations with
568   /// respect to all concurrently executing threads, or only with respect to
569   /// signal handlers executing in the same thread.
570   void setSynchScope(SynchronizationScope SynchScope) {
571     setInstructionSubclassData((getSubclassDataFromInstruction() & ~2) |
572                                (SynchScope << 1));
573   }
574
575   /// Returns the ordering constraint on this cmpxchg.
576   AtomicOrdering getSuccessOrdering() const {
577     return AtomicOrdering((getSubclassDataFromInstruction() >> 2) & 7);
578   }
579
580   /// Returns the ordering constraint on this cmpxchg.
581   AtomicOrdering getFailureOrdering() const {
582     return AtomicOrdering((getSubclassDataFromInstruction() >> 5) & 7);
583   }
584
585   /// Returns whether this cmpxchg is atomic between threads or only within a
586   /// single thread.
587   SynchronizationScope getSynchScope() const {
588     return SynchronizationScope((getSubclassDataFromInstruction() & 2) >> 1);
589   }
590
591   Value *getPointerOperand() { return getOperand(0); }
592   const Value *getPointerOperand() const { return getOperand(0); }
593   static unsigned getPointerOperandIndex() { return 0U; }
594
595   Value *getCompareOperand() { return getOperand(1); }
596   const Value *getCompareOperand() const { return getOperand(1); }
597
598   Value *getNewValOperand() { return getOperand(2); }
599   const Value *getNewValOperand() const { return getOperand(2); }
600
601   /// \brief Returns the address space of the pointer operand.
602   unsigned getPointerAddressSpace() const {
603     return getPointerOperand()->getType()->getPointerAddressSpace();
604   }
605
606   /// \brief Returns the strongest permitted ordering on failure, given the
607   /// desired ordering on success.
608   ///
609   /// If the comparison in a cmpxchg operation fails, there is no atomic store
610   /// so release semantics cannot be provided. So this function drops explicit
611   /// Release requests from the AtomicOrdering. A SequentiallyConsistent
612   /// operation would remain SequentiallyConsistent.
613   static AtomicOrdering
614   getStrongestFailureOrdering(AtomicOrdering SuccessOrdering) {
615     switch (SuccessOrdering) {
616     default: llvm_unreachable("invalid cmpxchg success ordering");
617     case Release:
618     case Monotonic:
619       return Monotonic;
620     case AcquireRelease:
621     case Acquire:
622       return Acquire;
623     case SequentiallyConsistent:
624       return SequentiallyConsistent;
625     }
626   }
627
628   // Methods for support type inquiry through isa, cast, and dyn_cast:
629   static inline bool classof(const Instruction *I) {
630     return I->getOpcode() == Instruction::AtomicCmpXchg;
631   }
632   static inline bool classof(const Value *V) {
633     return isa<Instruction>(V) && classof(cast<Instruction>(V));
634   }
635 private:
636   // Shadow Instruction::setInstructionSubclassData with a private forwarding
637   // method so that subclasses cannot accidentally use it.
638   void setInstructionSubclassData(unsigned short D) {
639     Instruction::setInstructionSubclassData(D);
640   }
641 };
642
643 template <>
644 struct OperandTraits<AtomicCmpXchgInst> :
645     public FixedNumOperandTraits<AtomicCmpXchgInst, 3> {
646 };
647
648 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(AtomicCmpXchgInst, Value)
649
650 //===----------------------------------------------------------------------===//
651 //                                AtomicRMWInst Class
652 //===----------------------------------------------------------------------===//
653
654 /// AtomicRMWInst - an instruction that atomically reads a memory location,
655 /// combines it with another value, and then stores the result back.  Returns
656 /// the old value.
657 ///
658 class AtomicRMWInst : public Instruction {
659   void *operator new(size_t, unsigned) = delete;
660 protected:
661   AtomicRMWInst *clone_impl() const override;
662 public:
663   /// This enumeration lists the possible modifications atomicrmw can make.  In
664   /// the descriptions, 'p' is the pointer to the instruction's memory location,
665   /// 'old' is the initial value of *p, and 'v' is the other value passed to the
666   /// instruction.  These instructions always return 'old'.
667   enum BinOp {
668     /// *p = v
669     Xchg,
670     /// *p = old + v
671     Add,
672     /// *p = old - v
673     Sub,
674     /// *p = old & v
675     And,
676     /// *p = ~(old & v)
677     Nand,
678     /// *p = old | v
679     Or,
680     /// *p = old ^ v
681     Xor,
682     /// *p = old >signed v ? old : v
683     Max,
684     /// *p = old <signed v ? old : v
685     Min,
686     /// *p = old >unsigned v ? old : v
687     UMax,
688     /// *p = old <unsigned v ? old : v
689     UMin,
690
691     FIRST_BINOP = Xchg,
692     LAST_BINOP = UMin,
693     BAD_BINOP
694   };
695
696   // allocate space for exactly two operands
697   void *operator new(size_t s) {
698     return User::operator new(s, 2);
699   }
700   AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
701                 AtomicOrdering Ordering, SynchronizationScope SynchScope,
702                 Instruction *InsertBefore = nullptr);
703   AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
704                 AtomicOrdering Ordering, SynchronizationScope SynchScope,
705                 BasicBlock *InsertAtEnd);
706
707   BinOp getOperation() const {
708     return static_cast<BinOp>(getSubclassDataFromInstruction() >> 5);
709   }
710
711   void setOperation(BinOp Operation) {
712     unsigned short SubclassData = getSubclassDataFromInstruction();
713     setInstructionSubclassData((SubclassData & 31) |
714                                (Operation << 5));
715   }
716
717   /// isVolatile - Return true if this is a RMW on a volatile memory location.
718   ///
719   bool isVolatile() const {
720     return getSubclassDataFromInstruction() & 1;
721   }
722
723   /// setVolatile - Specify whether this is a volatile RMW or not.
724   ///
725   void setVolatile(bool V) {
726      setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
727                                 (unsigned)V);
728   }
729
730   /// Transparently provide more efficient getOperand methods.
731   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
732
733   /// Set the ordering constraint on this RMW.
734   void setOrdering(AtomicOrdering Ordering) {
735     assert(Ordering != NotAtomic &&
736            "atomicrmw instructions can only be atomic.");
737     setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 2)) |
738                                (Ordering << 2));
739   }
740
741   /// Specify whether this RMW orders other operations with respect to all
742   /// concurrently executing threads, or only with respect to signal handlers
743   /// executing in the same thread.
744   void setSynchScope(SynchronizationScope SynchScope) {
745     setInstructionSubclassData((getSubclassDataFromInstruction() & ~2) |
746                                (SynchScope << 1));
747   }
748
749   /// Returns the ordering constraint on this RMW.
750   AtomicOrdering getOrdering() const {
751     return AtomicOrdering((getSubclassDataFromInstruction() >> 2) & 7);
752   }
753
754   /// Returns whether this RMW is atomic between threads or only within a
755   /// single thread.
756   SynchronizationScope getSynchScope() const {
757     return SynchronizationScope((getSubclassDataFromInstruction() & 2) >> 1);
758   }
759
760   Value *getPointerOperand() { return getOperand(0); }
761   const Value *getPointerOperand() const { return getOperand(0); }
762   static unsigned getPointerOperandIndex() { return 0U; }
763
764   Value *getValOperand() { return getOperand(1); }
765   const Value *getValOperand() const { return getOperand(1); }
766
767   /// \brief Returns the address space of the pointer operand.
768   unsigned getPointerAddressSpace() const {
769     return getPointerOperand()->getType()->getPointerAddressSpace();
770   }
771
772   // Methods for support type inquiry through isa, cast, and dyn_cast:
773   static inline bool classof(const Instruction *I) {
774     return I->getOpcode() == Instruction::AtomicRMW;
775   }
776   static inline bool classof(const Value *V) {
777     return isa<Instruction>(V) && classof(cast<Instruction>(V));
778   }
779 private:
780   void Init(BinOp Operation, Value *Ptr, Value *Val,
781             AtomicOrdering Ordering, SynchronizationScope SynchScope);
782   // Shadow Instruction::setInstructionSubclassData with a private forwarding
783   // method so that subclasses cannot accidentally use it.
784   void setInstructionSubclassData(unsigned short D) {
785     Instruction::setInstructionSubclassData(D);
786   }
787 };
788
789 template <>
790 struct OperandTraits<AtomicRMWInst>
791     : public FixedNumOperandTraits<AtomicRMWInst,2> {
792 };
793
794 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(AtomicRMWInst, Value)
795
796 //===----------------------------------------------------------------------===//
797 //                             GetElementPtrInst Class
798 //===----------------------------------------------------------------------===//
799
800 // checkGEPType - Simple wrapper function to give a better assertion failure
801 // message on bad indexes for a gep instruction.
802 //
803 inline Type *checkGEPType(Type *Ty) {
804   assert(Ty && "Invalid GetElementPtrInst indices for type!");
805   return Ty;
806 }
807
808 /// GetElementPtrInst - an instruction for type-safe pointer arithmetic to
809 /// access elements of arrays and structs
810 ///
811 class GetElementPtrInst : public Instruction {
812   Type *SourceElementType;
813   Type *ResultElementType;
814
815   GetElementPtrInst(const GetElementPtrInst &GEPI);
816   void init(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &NameStr);
817
818   /// Constructors - Create a getelementptr instruction with a base pointer an
819   /// list of indices. The first ctor can optionally insert before an existing
820   /// instruction, the second appends the new instruction to the specified
821   /// BasicBlock.
822   inline GetElementPtrInst(Type *PointeeType, Value *Ptr,
823                            ArrayRef<Value *> IdxList, unsigned Values,
824                            const Twine &NameStr, Instruction *InsertBefore);
825   inline GetElementPtrInst(Type *PointeeType, Value *Ptr,
826                            ArrayRef<Value *> IdxList, unsigned Values,
827                            const Twine &NameStr, BasicBlock *InsertAtEnd);
828
829 protected:
830   GetElementPtrInst *clone_impl() const override;
831 public:
832   static GetElementPtrInst *Create(Type *PointeeType, Value *Ptr,
833                                    ArrayRef<Value *> IdxList,
834                                    const Twine &NameStr = "",
835                                    Instruction *InsertBefore = nullptr) {
836     unsigned Values = 1 + unsigned(IdxList.size());
837     if (!PointeeType)
838       PointeeType =
839           cast<PointerType>(Ptr->getType()->getScalarType())->getElementType();
840     else
841       assert(
842           PointeeType ==
843           cast<PointerType>(Ptr->getType()->getScalarType())->getElementType());
844     return new (Values) GetElementPtrInst(PointeeType, Ptr, IdxList, Values,
845                                           NameStr, InsertBefore);
846   }
847   static GetElementPtrInst *Create(Type *PointeeType, Value *Ptr,
848                                    ArrayRef<Value *> IdxList,
849                                    const Twine &NameStr,
850                                    BasicBlock *InsertAtEnd) {
851     unsigned Values = 1 + unsigned(IdxList.size());
852     if (!PointeeType)
853       PointeeType =
854           cast<PointerType>(Ptr->getType()->getScalarType())->getElementType();
855     else
856       assert(
857           PointeeType ==
858           cast<PointerType>(Ptr->getType()->getScalarType())->getElementType());
859     return new (Values) GetElementPtrInst(PointeeType, Ptr, IdxList, Values,
860                                           NameStr, InsertAtEnd);
861   }
862
863   /// Create an "inbounds" getelementptr. See the documentation for the
864   /// "inbounds" flag in LangRef.html for details.
865   static GetElementPtrInst *CreateInBounds(Value *Ptr,
866                                            ArrayRef<Value *> IdxList,
867                                            const Twine &NameStr = "",
868                                            Instruction *InsertBefore = nullptr){
869     return CreateInBounds(nullptr, Ptr, IdxList, NameStr, InsertBefore);
870   }
871   static GetElementPtrInst *
872   CreateInBounds(Type *PointeeType, Value *Ptr, ArrayRef<Value *> IdxList,
873                  const Twine &NameStr = "",
874                  Instruction *InsertBefore = nullptr) {
875     GetElementPtrInst *GEP =
876         Create(PointeeType, Ptr, IdxList, NameStr, InsertBefore);
877     GEP->setIsInBounds(true);
878     return GEP;
879   }
880   static GetElementPtrInst *CreateInBounds(Value *Ptr,
881                                            ArrayRef<Value *> IdxList,
882                                            const Twine &NameStr,
883                                            BasicBlock *InsertAtEnd) {
884     return CreateInBounds(nullptr, Ptr, IdxList, NameStr, InsertAtEnd);
885   }
886   static GetElementPtrInst *CreateInBounds(Type *PointeeType, Value *Ptr,
887                                            ArrayRef<Value *> IdxList,
888                                            const Twine &NameStr,
889                                            BasicBlock *InsertAtEnd) {
890     GetElementPtrInst *GEP =
891         Create(PointeeType, Ptr, IdxList, NameStr, InsertAtEnd);
892     GEP->setIsInBounds(true);
893     return GEP;
894   }
895
896   /// Transparently provide more efficient getOperand methods.
897   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
898
899   // getType - Overload to return most specific sequential type.
900   SequentialType *getType() const {
901     return cast<SequentialType>(Instruction::getType());
902   }
903
904   Type *getSourceElementType() const { return SourceElementType; }
905
906   void setSourceElementType(Type *Ty) { SourceElementType = Ty; }
907   void setResultElementType(Type *Ty) { ResultElementType = Ty; }
908
909   Type *getResultElementType() const {
910     assert(ResultElementType ==
911            cast<PointerType>(getType()->getScalarType())->getElementType());
912     return ResultElementType;
913   }
914
915   /// \brief Returns the address space of this instruction's pointer type.
916   unsigned getAddressSpace() const {
917     // Note that this is always the same as the pointer operand's address space
918     // and that is cheaper to compute, so cheat here.
919     return getPointerAddressSpace();
920   }
921
922   /// getIndexedType - Returns the type of the element that would be loaded with
923   /// a load instruction with the specified parameters.
924   ///
925   /// Null is returned if the indices are invalid for the specified
926   /// pointer type.
927   ///
928   static Type *getIndexedType(Type *Ty, ArrayRef<Value *> IdxList);
929   static Type *getIndexedType(Type *Ty, ArrayRef<Constant *> IdxList);
930   static Type *getIndexedType(Type *Ty, ArrayRef<uint64_t> IdxList);
931
932   inline op_iterator       idx_begin()       { return op_begin()+1; }
933   inline const_op_iterator idx_begin() const { return op_begin()+1; }
934   inline op_iterator       idx_end()         { return op_end(); }
935   inline const_op_iterator idx_end()   const { return op_end(); }
936
937   Value *getPointerOperand() {
938     return getOperand(0);
939   }
940   const Value *getPointerOperand() const {
941     return getOperand(0);
942   }
943   static unsigned getPointerOperandIndex() {
944     return 0U;    // get index for modifying correct operand.
945   }
946
947   /// getPointerOperandType - Method to return the pointer operand as a
948   /// PointerType.
949   Type *getPointerOperandType() const {
950     return getPointerOperand()->getType();
951   }
952
953   /// \brief Returns the address space of the pointer operand.
954   unsigned getPointerAddressSpace() const {
955     return getPointerOperandType()->getPointerAddressSpace();
956   }
957
958   /// GetGEPReturnType - Returns the pointer type returned by the GEP
959   /// instruction, which may be a vector of pointers.
960   static Type *getGEPReturnType(Value *Ptr, ArrayRef<Value *> IdxList) {
961     return getGEPReturnType(
962         cast<PointerType>(Ptr->getType()->getScalarType())->getElementType(),
963         Ptr, IdxList);
964   }
965   static Type *getGEPReturnType(Type *ElTy, Value *Ptr,
966                                 ArrayRef<Value *> IdxList) {
967     Type *PtrTy = PointerType::get(checkGEPType(getIndexedType(ElTy, IdxList)),
968                                    Ptr->getType()->getPointerAddressSpace());
969     // Vector GEP
970     if (Ptr->getType()->isVectorTy()) {
971       unsigned NumElem = cast<VectorType>(Ptr->getType())->getNumElements();
972       return VectorType::get(PtrTy, NumElem);
973     }
974
975     // Scalar GEP
976     return PtrTy;
977   }
978
979   unsigned getNumIndices() const {  // Note: always non-negative
980     return getNumOperands() - 1;
981   }
982
983   bool hasIndices() const {
984     return getNumOperands() > 1;
985   }
986
987   /// hasAllZeroIndices - Return true if all of the indices of this GEP are
988   /// zeros.  If so, the result pointer and the first operand have the same
989   /// value, just potentially different types.
990   bool hasAllZeroIndices() const;
991
992   /// hasAllConstantIndices - Return true if all of the indices of this GEP are
993   /// constant integers.  If so, the result pointer and the first operand have
994   /// a constant offset between them.
995   bool hasAllConstantIndices() const;
996
997   /// setIsInBounds - Set or clear the inbounds flag on this GEP instruction.
998   /// See LangRef.html for the meaning of inbounds on a getelementptr.
999   void setIsInBounds(bool b = true);
1000
1001   /// isInBounds - Determine whether the GEP has the inbounds flag.
1002   bool isInBounds() const;
1003
1004   /// \brief Accumulate the constant address offset of this GEP if possible.
1005   ///
1006   /// This routine accepts an APInt into which it will accumulate the constant
1007   /// offset of this GEP if the GEP is in fact constant. If the GEP is not
1008   /// all-constant, it returns false and the value of the offset APInt is
1009   /// undefined (it is *not* preserved!). The APInt passed into this routine
1010   /// must be at least as wide as the IntPtr type for the address space of
1011   /// the base GEP pointer.
1012   bool accumulateConstantOffset(const DataLayout &DL, APInt &Offset) const;
1013
1014   // Methods for support type inquiry through isa, cast, and dyn_cast:
1015   static inline bool classof(const Instruction *I) {
1016     return (I->getOpcode() == Instruction::GetElementPtr);
1017   }
1018   static inline bool classof(const Value *V) {
1019     return isa<Instruction>(V) && classof(cast<Instruction>(V));
1020   }
1021 };
1022
1023 template <>
1024 struct OperandTraits<GetElementPtrInst> :
1025   public VariadicOperandTraits<GetElementPtrInst, 1> {
1026 };
1027
1028 GetElementPtrInst::GetElementPtrInst(Type *PointeeType, Value *Ptr,
1029                                      ArrayRef<Value *> IdxList, unsigned Values,
1030                                      const Twine &NameStr,
1031                                      Instruction *InsertBefore)
1032     : Instruction(getGEPReturnType(PointeeType, Ptr, IdxList), GetElementPtr,
1033                   OperandTraits<GetElementPtrInst>::op_end(this) - Values,
1034                   Values, InsertBefore),
1035       SourceElementType(PointeeType),
1036       ResultElementType(getIndexedType(PointeeType, IdxList)) {
1037   assert(ResultElementType ==
1038          cast<PointerType>(getType()->getScalarType())->getElementType());
1039   init(Ptr, IdxList, NameStr);
1040 }
1041 GetElementPtrInst::GetElementPtrInst(Type *PointeeType, Value *Ptr,
1042                                      ArrayRef<Value *> IdxList, unsigned Values,
1043                                      const Twine &NameStr,
1044                                      BasicBlock *InsertAtEnd)
1045     : Instruction(getGEPReturnType(PointeeType, Ptr, IdxList), GetElementPtr,
1046                   OperandTraits<GetElementPtrInst>::op_end(this) - Values,
1047                   Values, InsertAtEnd),
1048       SourceElementType(PointeeType),
1049       ResultElementType(getIndexedType(PointeeType, IdxList)) {
1050   assert(ResultElementType ==
1051          cast<PointerType>(getType()->getScalarType())->getElementType());
1052   init(Ptr, IdxList, NameStr);
1053 }
1054
1055
1056 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GetElementPtrInst, Value)
1057
1058
1059 //===----------------------------------------------------------------------===//
1060 //                               ICmpInst Class
1061 //===----------------------------------------------------------------------===//
1062
1063 /// This instruction compares its operands according to the predicate given
1064 /// to the constructor. It only operates on integers or pointers. The operands
1065 /// must be identical types.
1066 /// \brief Represent an integer comparison operator.
1067 class ICmpInst: public CmpInst {
1068   void AssertOK() {
1069     assert(getPredicate() >= CmpInst::FIRST_ICMP_PREDICATE &&
1070            getPredicate() <= CmpInst::LAST_ICMP_PREDICATE &&
1071            "Invalid ICmp predicate value");
1072     assert(getOperand(0)->getType() == getOperand(1)->getType() &&
1073           "Both operands to ICmp instruction are not of the same type!");
1074     // Check that the operands are the right type
1075     assert((getOperand(0)->getType()->isIntOrIntVectorTy() ||
1076             getOperand(0)->getType()->isPtrOrPtrVectorTy()) &&
1077            "Invalid operand types for ICmp instruction");
1078   }
1079
1080 protected:
1081   /// \brief Clone an identical ICmpInst
1082   ICmpInst *clone_impl() const override;
1083 public:
1084   /// \brief Constructor with insert-before-instruction semantics.
1085   ICmpInst(
1086     Instruction *InsertBefore,  ///< Where to insert
1087     Predicate pred,  ///< The predicate to use for the comparison
1088     Value *LHS,      ///< The left-hand-side of the expression
1089     Value *RHS,      ///< The right-hand-side of the expression
1090     const Twine &NameStr = ""  ///< Name of the instruction
1091   ) : CmpInst(makeCmpResultType(LHS->getType()),
1092               Instruction::ICmp, pred, LHS, RHS, NameStr,
1093               InsertBefore) {
1094 #ifndef NDEBUG
1095   AssertOK();
1096 #endif
1097   }
1098
1099   /// \brief Constructor with insert-at-end semantics.
1100   ICmpInst(
1101     BasicBlock &InsertAtEnd, ///< Block to insert into.
1102     Predicate pred,  ///< The predicate to use for the comparison
1103     Value *LHS,      ///< The left-hand-side of the expression
1104     Value *RHS,      ///< The right-hand-side of the expression
1105     const Twine &NameStr = ""  ///< Name of the instruction
1106   ) : CmpInst(makeCmpResultType(LHS->getType()),
1107               Instruction::ICmp, pred, LHS, RHS, NameStr,
1108               &InsertAtEnd) {
1109 #ifndef NDEBUG
1110   AssertOK();
1111 #endif
1112   }
1113
1114   /// \brief Constructor with no-insertion semantics
1115   ICmpInst(
1116     Predicate pred, ///< The predicate to use for the comparison
1117     Value *LHS,     ///< The left-hand-side of the expression
1118     Value *RHS,     ///< The right-hand-side of the expression
1119     const Twine &NameStr = "" ///< Name of the instruction
1120   ) : CmpInst(makeCmpResultType(LHS->getType()),
1121               Instruction::ICmp, pred, LHS, RHS, NameStr) {
1122 #ifndef NDEBUG
1123   AssertOK();
1124 #endif
1125   }
1126
1127   /// For example, EQ->EQ, SLE->SLE, UGT->SGT, etc.
1128   /// @returns the predicate that would be the result if the operand were
1129   /// regarded as signed.
1130   /// \brief Return the signed version of the predicate
1131   Predicate getSignedPredicate() const {
1132     return getSignedPredicate(getPredicate());
1133   }
1134
1135   /// This is a static version that you can use without an instruction.
1136   /// \brief Return the signed version of the predicate.
1137   static Predicate getSignedPredicate(Predicate pred);
1138
1139   /// For example, EQ->EQ, SLE->ULE, UGT->UGT, etc.
1140   /// @returns the predicate that would be the result if the operand were
1141   /// regarded as unsigned.
1142   /// \brief Return the unsigned version of the predicate
1143   Predicate getUnsignedPredicate() const {
1144     return getUnsignedPredicate(getPredicate());
1145   }
1146
1147   /// This is a static version that you can use without an instruction.
1148   /// \brief Return the unsigned version of the predicate.
1149   static Predicate getUnsignedPredicate(Predicate pred);
1150
1151   /// isEquality - Return true if this predicate is either EQ or NE.  This also
1152   /// tests for commutativity.
1153   static bool isEquality(Predicate P) {
1154     return P == ICMP_EQ || P == ICMP_NE;
1155   }
1156
1157   /// isEquality - Return true if this predicate is either EQ or NE.  This also
1158   /// tests for commutativity.
1159   bool isEquality() const {
1160     return isEquality(getPredicate());
1161   }
1162
1163   /// @returns true if the predicate of this ICmpInst is commutative
1164   /// \brief Determine if this relation is commutative.
1165   bool isCommutative() const { return isEquality(); }
1166
1167   /// isRelational - Return true if the predicate is relational (not EQ or NE).
1168   ///
1169   bool isRelational() const {
1170     return !isEquality();
1171   }
1172
1173   /// isRelational - Return true if the predicate is relational (not EQ or NE).
1174   ///
1175   static bool isRelational(Predicate P) {
1176     return !isEquality(P);
1177   }
1178
1179   /// Initialize a set of values that all satisfy the predicate with C.
1180   /// \brief Make a ConstantRange for a relation with a constant value.
1181   static ConstantRange makeConstantRange(Predicate pred, const APInt &C);
1182
1183   /// Exchange the two operands to this instruction in such a way that it does
1184   /// not modify the semantics of the instruction. The predicate value may be
1185   /// changed to retain the same result if the predicate is order dependent
1186   /// (e.g. ult).
1187   /// \brief Swap operands and adjust predicate.
1188   void swapOperands() {
1189     setPredicate(getSwappedPredicate());
1190     Op<0>().swap(Op<1>());
1191   }
1192
1193   // Methods for support type inquiry through isa, cast, and dyn_cast:
1194   static inline bool classof(const Instruction *I) {
1195     return I->getOpcode() == Instruction::ICmp;
1196   }
1197   static inline bool classof(const Value *V) {
1198     return isa<Instruction>(V) && classof(cast<Instruction>(V));
1199   }
1200
1201 };
1202
1203 //===----------------------------------------------------------------------===//
1204 //                               FCmpInst Class
1205 //===----------------------------------------------------------------------===//
1206
1207 /// This instruction compares its operands according to the predicate given
1208 /// to the constructor. It only operates on floating point values or packed
1209 /// vectors of floating point values. The operands must be identical types.
1210 /// \brief Represents a floating point comparison operator.
1211 class FCmpInst: public CmpInst {
1212 protected:
1213   /// \brief Clone an identical FCmpInst
1214   FCmpInst *clone_impl() const override;
1215 public:
1216   /// \brief Constructor with insert-before-instruction semantics.
1217   FCmpInst(
1218     Instruction *InsertBefore, ///< Where to insert
1219     Predicate pred,  ///< The predicate to use for the comparison
1220     Value *LHS,      ///< The left-hand-side of the expression
1221     Value *RHS,      ///< The right-hand-side of the expression
1222     const Twine &NameStr = ""  ///< Name of the instruction
1223   ) : CmpInst(makeCmpResultType(LHS->getType()),
1224               Instruction::FCmp, pred, LHS, RHS, NameStr,
1225               InsertBefore) {
1226     assert(pred <= FCmpInst::LAST_FCMP_PREDICATE &&
1227            "Invalid FCmp predicate value");
1228     assert(getOperand(0)->getType() == getOperand(1)->getType() &&
1229            "Both operands to FCmp instruction are not of the same type!");
1230     // Check that the operands are the right type
1231     assert(getOperand(0)->getType()->isFPOrFPVectorTy() &&
1232            "Invalid operand types for FCmp instruction");
1233   }
1234
1235   /// \brief Constructor with insert-at-end semantics.
1236   FCmpInst(
1237     BasicBlock &InsertAtEnd, ///< Block to insert into.
1238     Predicate pred,  ///< The predicate to use for the comparison
1239     Value *LHS,      ///< The left-hand-side of the expression
1240     Value *RHS,      ///< The right-hand-side of the expression
1241     const Twine &NameStr = ""  ///< Name of the instruction
1242   ) : CmpInst(makeCmpResultType(LHS->getType()),
1243               Instruction::FCmp, pred, LHS, RHS, NameStr,
1244               &InsertAtEnd) {
1245     assert(pred <= FCmpInst::LAST_FCMP_PREDICATE &&
1246            "Invalid FCmp predicate value");
1247     assert(getOperand(0)->getType() == getOperand(1)->getType() &&
1248            "Both operands to FCmp instruction are not of the same type!");
1249     // Check that the operands are the right type
1250     assert(getOperand(0)->getType()->isFPOrFPVectorTy() &&
1251            "Invalid operand types for FCmp instruction");
1252   }
1253
1254   /// \brief Constructor with no-insertion semantics
1255   FCmpInst(
1256     Predicate pred, ///< The predicate to use for the comparison
1257     Value *LHS,     ///< The left-hand-side of the expression
1258     Value *RHS,     ///< The right-hand-side of the expression
1259     const Twine &NameStr = "" ///< Name of the instruction
1260   ) : CmpInst(makeCmpResultType(LHS->getType()),
1261               Instruction::FCmp, pred, LHS, RHS, NameStr) {
1262     assert(pred <= FCmpInst::LAST_FCMP_PREDICATE &&
1263            "Invalid FCmp predicate value");
1264     assert(getOperand(0)->getType() == getOperand(1)->getType() &&
1265            "Both operands to FCmp instruction are not of the same type!");
1266     // Check that the operands are the right type
1267     assert(getOperand(0)->getType()->isFPOrFPVectorTy() &&
1268            "Invalid operand types for FCmp instruction");
1269   }
1270
1271   /// @returns true if the predicate of this instruction is EQ or NE.
1272   /// \brief Determine if this is an equality predicate.
1273   static bool isEquality(Predicate Pred) {
1274     return Pred == FCMP_OEQ || Pred == FCMP_ONE || Pred == FCMP_UEQ ||
1275            Pred == FCMP_UNE;
1276   }
1277
1278   /// @returns true if the predicate of this instruction is EQ or NE.
1279   /// \brief Determine if this is an equality predicate.
1280   bool isEquality() const { return isEquality(getPredicate()); }
1281
1282   /// @returns true if the predicate of this instruction is commutative.
1283   /// \brief Determine if this is a commutative predicate.
1284   bool isCommutative() const {
1285     return isEquality() ||
1286            getPredicate() == FCMP_FALSE ||
1287            getPredicate() == FCMP_TRUE ||
1288            getPredicate() == FCMP_ORD ||
1289            getPredicate() == FCMP_UNO;
1290   }
1291
1292   /// @returns true if the predicate is relational (not EQ or NE).
1293   /// \brief Determine if this a relational predicate.
1294   bool isRelational() const { return !isEquality(); }
1295
1296   /// Exchange the two operands to this instruction in such a way that it does
1297   /// not modify the semantics of the instruction. The predicate value may be
1298   /// changed to retain the same result if the predicate is order dependent
1299   /// (e.g. ult).
1300   /// \brief Swap operands and adjust predicate.
1301   void swapOperands() {
1302     setPredicate(getSwappedPredicate());
1303     Op<0>().swap(Op<1>());
1304   }
1305
1306   /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
1307   static inline bool classof(const Instruction *I) {
1308     return I->getOpcode() == Instruction::FCmp;
1309   }
1310   static inline bool classof(const Value *V) {
1311     return isa<Instruction>(V) && classof(cast<Instruction>(V));
1312   }
1313 };
1314
1315 //===----------------------------------------------------------------------===//
1316 /// CallInst - This class represents a function call, abstracting a target
1317 /// machine's calling convention.  This class uses low bit of the SubClassData
1318 /// field to indicate whether or not this is a tail call.  The rest of the bits
1319 /// hold the calling convention of the call.
1320 ///
1321 class CallInst : public Instruction {
1322   AttributeSet AttributeList; ///< parameter attributes for call
1323   FunctionType *FTy;
1324   CallInst(const CallInst &CI);
1325   void init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr) {
1326     init(cast<FunctionType>(
1327              cast<PointerType>(Func->getType())->getElementType()),
1328          Func, Args, NameStr);
1329   }
1330   void init(FunctionType *FTy, Value *Func, ArrayRef<Value *> Args,
1331             const Twine &NameStr);
1332   void init(Value *Func, const Twine &NameStr);
1333
1334   /// Construct a CallInst given a range of arguments.
1335   /// \brief Construct a CallInst from a range of arguments
1336   inline CallInst(FunctionType *Ty, Value *Func, ArrayRef<Value *> Args,
1337                   const Twine &NameStr, Instruction *InsertBefore);
1338   inline CallInst(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr,
1339                   Instruction *InsertBefore)
1340       : CallInst(cast<FunctionType>(
1341                      cast<PointerType>(Func->getType())->getElementType()),
1342                  Func, Args, NameStr, InsertBefore) {}
1343
1344   /// Construct a CallInst given a range of arguments.
1345   /// \brief Construct a CallInst from a range of arguments
1346   inline CallInst(Value *Func, ArrayRef<Value *> Args,
1347                   const Twine &NameStr, BasicBlock *InsertAtEnd);
1348
1349   explicit CallInst(Value *F, const Twine &NameStr,
1350                     Instruction *InsertBefore);
1351   CallInst(Value *F, const Twine &NameStr, BasicBlock *InsertAtEnd);
1352 protected:
1353   CallInst *clone_impl() const override;
1354 public:
1355   static CallInst *Create(Value *Func,
1356                           ArrayRef<Value *> Args,
1357                           const Twine &NameStr = "",
1358                           Instruction *InsertBefore = nullptr) {
1359     return Create(cast<FunctionType>(
1360                       cast<PointerType>(Func->getType())->getElementType()),
1361                   Func, Args, NameStr, InsertBefore);
1362   }
1363   static CallInst *Create(FunctionType *Ty, Value *Func, ArrayRef<Value *> Args,
1364                           const Twine &NameStr = "",
1365                           Instruction *InsertBefore = nullptr) {
1366     return new (unsigned(Args.size() + 1))
1367         CallInst(Ty, Func, Args, NameStr, InsertBefore);
1368   }
1369   static CallInst *Create(Value *Func,
1370                           ArrayRef<Value *> Args,
1371                           const Twine &NameStr, BasicBlock *InsertAtEnd) {
1372     return new(unsigned(Args.size() + 1))
1373       CallInst(Func, Args, NameStr, InsertAtEnd);
1374   }
1375   static CallInst *Create(Value *F, const Twine &NameStr = "",
1376                           Instruction *InsertBefore = nullptr) {
1377     return new(1) CallInst(F, NameStr, InsertBefore);
1378   }
1379   static CallInst *Create(Value *F, const Twine &NameStr,
1380                           BasicBlock *InsertAtEnd) {
1381     return new(1) CallInst(F, NameStr, InsertAtEnd);
1382   }
1383   /// CreateMalloc - Generate the IR for a call to malloc:
1384   /// 1. Compute the malloc call's argument as the specified type's size,
1385   ///    possibly multiplied by the array size if the array size is not
1386   ///    constant 1.
1387   /// 2. Call malloc with that argument.
1388   /// 3. Bitcast the result of the malloc call to the specified type.
1389   static Instruction *CreateMalloc(Instruction *InsertBefore,
1390                                    Type *IntPtrTy, Type *AllocTy,
1391                                    Value *AllocSize, Value *ArraySize = nullptr,
1392                                    Function* MallocF = nullptr,
1393                                    const Twine &Name = "");
1394   static Instruction *CreateMalloc(BasicBlock *InsertAtEnd,
1395                                    Type *IntPtrTy, Type *AllocTy,
1396                                    Value *AllocSize, Value *ArraySize = nullptr,
1397                                    Function* MallocF = nullptr,
1398                                    const Twine &Name = "");
1399   /// CreateFree - Generate the IR for a call to the builtin free function.
1400   static Instruction* CreateFree(Value* Source, Instruction *InsertBefore);
1401   static Instruction* CreateFree(Value* Source, BasicBlock *InsertAtEnd);
1402
1403   ~CallInst() override;
1404
1405   FunctionType *getFunctionType() const { return FTy; }
1406
1407   void mutateFunctionType(FunctionType *FTy) {
1408     mutateType(FTy->getReturnType());
1409     this->FTy = FTy;
1410   }
1411
1412   // Note that 'musttail' implies 'tail'.
1413   enum TailCallKind { TCK_None = 0, TCK_Tail = 1, TCK_MustTail = 2 };
1414   TailCallKind getTailCallKind() const {
1415     return TailCallKind(getSubclassDataFromInstruction() & 3);
1416   }
1417   bool isTailCall() const {
1418     return (getSubclassDataFromInstruction() & 3) != TCK_None;
1419   }
1420   bool isMustTailCall() const {
1421     return (getSubclassDataFromInstruction() & 3) == TCK_MustTail;
1422   }
1423   void setTailCall(bool isTC = true) {
1424     setInstructionSubclassData((getSubclassDataFromInstruction() & ~3) |
1425                                unsigned(isTC ? TCK_Tail : TCK_None));
1426   }
1427   void setTailCallKind(TailCallKind TCK) {
1428     setInstructionSubclassData((getSubclassDataFromInstruction() & ~3) |
1429                                unsigned(TCK));
1430   }
1431
1432   /// Provide fast operand accessors
1433   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
1434
1435   /// getNumArgOperands - Return the number of call arguments.
1436   ///
1437   unsigned getNumArgOperands() const { return getNumOperands() - 1; }
1438
1439   /// getArgOperand/setArgOperand - Return/set the i-th call argument.
1440   ///
1441   Value *getArgOperand(unsigned i) const { return getOperand(i); }
1442   void setArgOperand(unsigned i, Value *v) { setOperand(i, v); }
1443
1444   /// arg_operands - iteration adapter for range-for loops.
1445   iterator_range<op_iterator> arg_operands() {
1446     // The last operand in the op list is the callee - it's not one of the args
1447     // so we don't want to iterate over it.
1448     return iterator_range<op_iterator>(op_begin(), op_end() - 1);
1449   }
1450
1451   /// arg_operands - iteration adapter for range-for loops.
1452   iterator_range<const_op_iterator> arg_operands() const {
1453     return iterator_range<const_op_iterator>(op_begin(), op_end() - 1);
1454   }
1455
1456   /// \brief Wrappers for getting the \c Use of a call argument.
1457   const Use &getArgOperandUse(unsigned i) const { return getOperandUse(i); }
1458   Use &getArgOperandUse(unsigned i) { return getOperandUse(i); }
1459
1460   /// getCallingConv/setCallingConv - Get or set the calling convention of this
1461   /// function call.
1462   CallingConv::ID getCallingConv() const {
1463     return static_cast<CallingConv::ID>(getSubclassDataFromInstruction() >> 2);
1464   }
1465   void setCallingConv(CallingConv::ID CC) {
1466     setInstructionSubclassData((getSubclassDataFromInstruction() & 3) |
1467                                (static_cast<unsigned>(CC) << 2));
1468   }
1469
1470   /// getAttributes - Return the parameter attributes for this call.
1471   ///
1472   const AttributeSet &getAttributes() const { return AttributeList; }
1473
1474   /// setAttributes - Set the parameter attributes for this call.
1475   ///
1476   void setAttributes(const AttributeSet &Attrs) { AttributeList = Attrs; }
1477
1478   /// addAttribute - adds the attribute to the list of attributes.
1479   void addAttribute(unsigned i, Attribute::AttrKind attr);
1480
1481   /// removeAttribute - removes the attribute from the list of attributes.
1482   void removeAttribute(unsigned i, Attribute attr);
1483
1484   /// \brief adds the dereferenceable attribute to the list of attributes.
1485   void addDereferenceableAttr(unsigned i, uint64_t Bytes);
1486
1487   /// \brief adds the dereferenceable_or_null attribute to the list of
1488   /// attributes.
1489   void addDereferenceableOrNullAttr(unsigned i, uint64_t Bytes);
1490
1491   /// \brief Determine whether this call has the given attribute.
1492   bool hasFnAttr(Attribute::AttrKind A) const {
1493     assert(A != Attribute::NoBuiltin &&
1494            "Use CallInst::isNoBuiltin() to check for Attribute::NoBuiltin");
1495     return hasFnAttrImpl(A);
1496   }
1497
1498   /// \brief Determine whether the call or the callee has the given attributes.
1499   bool paramHasAttr(unsigned i, Attribute::AttrKind A) const;
1500
1501   /// \brief Extract the alignment for a call or parameter (0=unknown).
1502   unsigned getParamAlignment(unsigned i) const {
1503     return AttributeList.getParamAlignment(i);
1504   }
1505
1506   /// \brief Extract the number of dereferenceable bytes for a call or
1507   /// parameter (0=unknown).
1508   uint64_t getDereferenceableBytes(unsigned i) const {
1509     return AttributeList.getDereferenceableBytes(i);
1510   }
1511
1512   /// \brief Extract the number of dereferenceable_or_null bytes for a call or
1513   /// parameter (0=unknown).
1514   uint64_t getDereferenceableOrNullBytes(unsigned i) const {
1515     return AttributeList.getDereferenceableOrNullBytes(i);
1516   }
1517   
1518   /// \brief Return true if the call should not be treated as a call to a
1519   /// builtin.
1520   bool isNoBuiltin() const {
1521     return hasFnAttrImpl(Attribute::NoBuiltin) &&
1522       !hasFnAttrImpl(Attribute::Builtin);
1523   }
1524
1525   /// \brief Return true if the call should not be inlined.
1526   bool isNoInline() const { return hasFnAttr(Attribute::NoInline); }
1527   void setIsNoInline() {
1528     addAttribute(AttributeSet::FunctionIndex, Attribute::NoInline);
1529   }
1530
1531   /// \brief Return true if the call can return twice
1532   bool canReturnTwice() const {
1533     return hasFnAttr(Attribute::ReturnsTwice);
1534   }
1535   void setCanReturnTwice() {
1536     addAttribute(AttributeSet::FunctionIndex, Attribute::ReturnsTwice);
1537   }
1538
1539   /// \brief Determine if the call does not access memory.
1540   bool doesNotAccessMemory() const {
1541     return hasFnAttr(Attribute::ReadNone);
1542   }
1543   void setDoesNotAccessMemory() {
1544     addAttribute(AttributeSet::FunctionIndex, Attribute::ReadNone);
1545   }
1546
1547   /// \brief Determine if the call does not access or only reads memory.
1548   bool onlyReadsMemory() const {
1549     return doesNotAccessMemory() || hasFnAttr(Attribute::ReadOnly);
1550   }
1551   void setOnlyReadsMemory() {
1552     addAttribute(AttributeSet::FunctionIndex, Attribute::ReadOnly);
1553   }
1554
1555   /// \brief Determine if the call cannot return.
1556   bool doesNotReturn() const { return hasFnAttr(Attribute::NoReturn); }
1557   void setDoesNotReturn() {
1558     addAttribute(AttributeSet::FunctionIndex, Attribute::NoReturn);
1559   }
1560
1561   /// \brief Determine if the call cannot unwind.
1562   bool doesNotThrow() const { return hasFnAttr(Attribute::NoUnwind); }
1563   void setDoesNotThrow() {
1564     addAttribute(AttributeSet::FunctionIndex, Attribute::NoUnwind);
1565   }
1566
1567   /// \brief Determine if the call cannot be duplicated.
1568   bool cannotDuplicate() const {return hasFnAttr(Attribute::NoDuplicate); }
1569   void setCannotDuplicate() {
1570     addAttribute(AttributeSet::FunctionIndex, Attribute::NoDuplicate);
1571   }
1572
1573   /// \brief Determine if the call returns a structure through first
1574   /// pointer argument.
1575   bool hasStructRetAttr() const {
1576     // Be friendly and also check the callee.
1577     return paramHasAttr(1, Attribute::StructRet);
1578   }
1579
1580   /// \brief Determine if any call argument is an aggregate passed by value.
1581   bool hasByValArgument() const {
1582     return AttributeList.hasAttrSomewhere(Attribute::ByVal);
1583   }
1584
1585   /// getCalledFunction - Return the function called, or null if this is an
1586   /// indirect function invocation.
1587   ///
1588   Function *getCalledFunction() const {
1589     return dyn_cast<Function>(Op<-1>());
1590   }
1591
1592   /// getCalledValue - Get a pointer to the function that is invoked by this
1593   /// instruction.
1594   const Value *getCalledValue() const { return Op<-1>(); }
1595         Value *getCalledValue()       { return Op<-1>(); }
1596
1597   /// setCalledFunction - Set the function called.
1598   void setCalledFunction(Value* Fn) {
1599     setCalledFunction(
1600         cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType()),
1601         Fn);
1602   }
1603   void setCalledFunction(FunctionType *FTy, Value *Fn) {
1604     this->FTy = FTy;
1605     assert(FTy == cast<FunctionType>(
1606                       cast<PointerType>(Fn->getType())->getElementType()));
1607     Op<-1>() = Fn;
1608   }
1609
1610   /// isInlineAsm - Check if this call is an inline asm statement.
1611   bool isInlineAsm() const {
1612     return isa<InlineAsm>(Op<-1>());
1613   }
1614
1615   // Methods for support type inquiry through isa, cast, and dyn_cast:
1616   static inline bool classof(const Instruction *I) {
1617     return I->getOpcode() == Instruction::Call;
1618   }
1619   static inline bool classof(const Value *V) {
1620     return isa<Instruction>(V) && classof(cast<Instruction>(V));
1621   }
1622 private:
1623
1624   bool hasFnAttrImpl(Attribute::AttrKind A) const;
1625
1626   // Shadow Instruction::setInstructionSubclassData with a private forwarding
1627   // method so that subclasses cannot accidentally use it.
1628   void setInstructionSubclassData(unsigned short D) {
1629     Instruction::setInstructionSubclassData(D);
1630   }
1631 };
1632
1633 template <>
1634 struct OperandTraits<CallInst> : public VariadicOperandTraits<CallInst, 1> {
1635 };
1636
1637 CallInst::CallInst(Value *Func, ArrayRef<Value *> Args,
1638                    const Twine &NameStr, BasicBlock *InsertAtEnd)
1639   : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
1640                                    ->getElementType())->getReturnType(),
1641                 Instruction::Call,
1642                 OperandTraits<CallInst>::op_end(this) - (Args.size() + 1),
1643                 unsigned(Args.size() + 1), InsertAtEnd) {
1644   init(Func, Args, NameStr);
1645 }
1646
1647 CallInst::CallInst(FunctionType *Ty, Value *Func, ArrayRef<Value *> Args,
1648                    const Twine &NameStr, Instruction *InsertBefore)
1649     : Instruction(Ty->getReturnType(), Instruction::Call,
1650                   OperandTraits<CallInst>::op_end(this) - (Args.size() + 1),
1651                   unsigned(Args.size() + 1), InsertBefore) {
1652   init(Ty, Func, Args, NameStr);
1653 }
1654
1655
1656 // Note: if you get compile errors about private methods then
1657 //       please update your code to use the high-level operand
1658 //       interfaces. See line 943 above.
1659 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CallInst, Value)
1660
1661 //===----------------------------------------------------------------------===//
1662 //                               SelectInst Class
1663 //===----------------------------------------------------------------------===//
1664
1665 /// SelectInst - This class represents the LLVM 'select' instruction.
1666 ///
1667 class SelectInst : public Instruction {
1668   void init(Value *C, Value *S1, Value *S2) {
1669     assert(!areInvalidOperands(C, S1, S2) && "Invalid operands for select");
1670     Op<0>() = C;
1671     Op<1>() = S1;
1672     Op<2>() = S2;
1673   }
1674
1675   SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1676              Instruction *InsertBefore)
1677     : Instruction(S1->getType(), Instruction::Select,
1678                   &Op<0>(), 3, InsertBefore) {
1679     init(C, S1, S2);
1680     setName(NameStr);
1681   }
1682   SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1683              BasicBlock *InsertAtEnd)
1684     : Instruction(S1->getType(), Instruction::Select,
1685                   &Op<0>(), 3, InsertAtEnd) {
1686     init(C, S1, S2);
1687     setName(NameStr);
1688   }
1689 protected:
1690   SelectInst *clone_impl() const override;
1691 public:
1692   static SelectInst *Create(Value *C, Value *S1, Value *S2,
1693                             const Twine &NameStr = "",
1694                             Instruction *InsertBefore = nullptr) {
1695     return new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
1696   }
1697   static SelectInst *Create(Value *C, Value *S1, Value *S2,
1698                             const Twine &NameStr,
1699                             BasicBlock *InsertAtEnd) {
1700     return new(3) SelectInst(C, S1, S2, NameStr, InsertAtEnd);
1701   }
1702
1703   const Value *getCondition() const { return Op<0>(); }
1704   const Value *getTrueValue() const { return Op<1>(); }
1705   const Value *getFalseValue() const { return Op<2>(); }
1706   Value *getCondition() { return Op<0>(); }
1707   Value *getTrueValue() { return Op<1>(); }
1708   Value *getFalseValue() { return Op<2>(); }
1709
1710   /// areInvalidOperands - Return a string if the specified operands are invalid
1711   /// for a select operation, otherwise return null.
1712   static const char *areInvalidOperands(Value *Cond, Value *True, Value *False);
1713
1714   /// Transparently provide more efficient getOperand methods.
1715   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
1716
1717   OtherOps getOpcode() const {
1718     return static_cast<OtherOps>(Instruction::getOpcode());
1719   }
1720
1721   // Methods for support type inquiry through isa, cast, and dyn_cast:
1722   static inline bool classof(const Instruction *I) {
1723     return I->getOpcode() == Instruction::Select;
1724   }
1725   static inline bool classof(const Value *V) {
1726     return isa<Instruction>(V) && classof(cast<Instruction>(V));
1727   }
1728 };
1729
1730 template <>
1731 struct OperandTraits<SelectInst> : public FixedNumOperandTraits<SelectInst, 3> {
1732 };
1733
1734 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectInst, Value)
1735
1736 //===----------------------------------------------------------------------===//
1737 //                                VAArgInst Class
1738 //===----------------------------------------------------------------------===//
1739
1740 /// VAArgInst - This class represents the va_arg llvm instruction, which returns
1741 /// an argument of the specified type given a va_list and increments that list
1742 ///
1743 class VAArgInst : public UnaryInstruction {
1744 protected:
1745   VAArgInst *clone_impl() const override;
1746
1747 public:
1748   VAArgInst(Value *List, Type *Ty, const Twine &NameStr = "",
1749              Instruction *InsertBefore = nullptr)
1750     : UnaryInstruction(Ty, VAArg, List, InsertBefore) {
1751     setName(NameStr);
1752   }
1753   VAArgInst(Value *List, Type *Ty, const Twine &NameStr,
1754             BasicBlock *InsertAtEnd)
1755     : UnaryInstruction(Ty, VAArg, List, InsertAtEnd) {
1756     setName(NameStr);
1757   }
1758
1759   Value *getPointerOperand() { return getOperand(0); }
1760   const Value *getPointerOperand() const { return getOperand(0); }
1761   static unsigned getPointerOperandIndex() { return 0U; }
1762
1763   // Methods for support type inquiry through isa, cast, and dyn_cast:
1764   static inline bool classof(const Instruction *I) {
1765     return I->getOpcode() == VAArg;
1766   }
1767   static inline bool classof(const Value *V) {
1768     return isa<Instruction>(V) && classof(cast<Instruction>(V));
1769   }
1770 };
1771
1772 //===----------------------------------------------------------------------===//
1773 //                                ExtractElementInst Class
1774 //===----------------------------------------------------------------------===//
1775
1776 /// ExtractElementInst - This instruction extracts a single (scalar)
1777 /// element from a VectorType value
1778 ///
1779 class ExtractElementInst : public Instruction {
1780   ExtractElementInst(Value *Vec, Value *Idx, const Twine &NameStr = "",
1781                      Instruction *InsertBefore = nullptr);
1782   ExtractElementInst(Value *Vec, Value *Idx, const Twine &NameStr,
1783                      BasicBlock *InsertAtEnd);
1784 protected:
1785   ExtractElementInst *clone_impl() const override;
1786
1787 public:
1788   static ExtractElementInst *Create(Value *Vec, Value *Idx,
1789                                    const Twine &NameStr = "",
1790                                    Instruction *InsertBefore = nullptr) {
1791     return new(2) ExtractElementInst(Vec, Idx, NameStr, InsertBefore);
1792   }
1793   static ExtractElementInst *Create(Value *Vec, Value *Idx,
1794                                    const Twine &NameStr,
1795                                    BasicBlock *InsertAtEnd) {
1796     return new(2) ExtractElementInst(Vec, Idx, NameStr, InsertAtEnd);
1797   }
1798
1799   /// isValidOperands - Return true if an extractelement instruction can be
1800   /// formed with the specified operands.
1801   static bool isValidOperands(const Value *Vec, const Value *Idx);
1802
1803   Value *getVectorOperand() { return Op<0>(); }
1804   Value *getIndexOperand() { return Op<1>(); }
1805   const Value *getVectorOperand() const { return Op<0>(); }
1806   const Value *getIndexOperand() const { return Op<1>(); }
1807
1808   VectorType *getVectorOperandType() const {
1809     return cast<VectorType>(getVectorOperand()->getType());
1810   }
1811
1812
1813   /// Transparently provide more efficient getOperand methods.
1814   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
1815
1816   // Methods for support type inquiry through isa, cast, and dyn_cast:
1817   static inline bool classof(const Instruction *I) {
1818     return I->getOpcode() == Instruction::ExtractElement;
1819   }
1820   static inline bool classof(const Value *V) {
1821     return isa<Instruction>(V) && classof(cast<Instruction>(V));
1822   }
1823 };
1824
1825 template <>
1826 struct OperandTraits<ExtractElementInst> :
1827   public FixedNumOperandTraits<ExtractElementInst, 2> {
1828 };
1829
1830 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractElementInst, Value)
1831
1832 //===----------------------------------------------------------------------===//
1833 //                                InsertElementInst Class
1834 //===----------------------------------------------------------------------===//
1835
1836 /// InsertElementInst - This instruction inserts a single (scalar)
1837 /// element into a VectorType value
1838 ///
1839 class InsertElementInst : public Instruction {
1840   InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
1841                     const Twine &NameStr = "",
1842                     Instruction *InsertBefore = nullptr);
1843   InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
1844                     const Twine &NameStr, BasicBlock *InsertAtEnd);
1845 protected:
1846   InsertElementInst *clone_impl() const override;
1847
1848 public:
1849   static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx,
1850                                    const Twine &NameStr = "",
1851                                    Instruction *InsertBefore = nullptr) {
1852     return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertBefore);
1853   }
1854   static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx,
1855                                    const Twine &NameStr,
1856                                    BasicBlock *InsertAtEnd) {
1857     return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertAtEnd);
1858   }
1859
1860   /// isValidOperands - Return true if an insertelement instruction can be
1861   /// formed with the specified operands.
1862   static bool isValidOperands(const Value *Vec, const Value *NewElt,
1863                               const Value *Idx);
1864
1865   /// getType - Overload to return most specific vector type.
1866   ///
1867   VectorType *getType() const {
1868     return cast<VectorType>(Instruction::getType());
1869   }
1870
1871   /// Transparently provide more efficient getOperand methods.
1872   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
1873
1874   // Methods for support type inquiry through isa, cast, and dyn_cast:
1875   static inline bool classof(const Instruction *I) {
1876     return I->getOpcode() == Instruction::InsertElement;
1877   }
1878   static inline bool classof(const Value *V) {
1879     return isa<Instruction>(V) && classof(cast<Instruction>(V));
1880   }
1881 };
1882
1883 template <>
1884 struct OperandTraits<InsertElementInst> :
1885   public FixedNumOperandTraits<InsertElementInst, 3> {
1886 };
1887
1888 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementInst, Value)
1889
1890 //===----------------------------------------------------------------------===//
1891 //                           ShuffleVectorInst Class
1892 //===----------------------------------------------------------------------===//
1893
1894 /// ShuffleVectorInst - This instruction constructs a fixed permutation of two
1895 /// input vectors.
1896 ///
1897 class ShuffleVectorInst : public Instruction {
1898 protected:
1899   ShuffleVectorInst *clone_impl() const override;
1900
1901 public:
1902   // allocate space for exactly three operands
1903   void *operator new(size_t s) {
1904     return User::operator new(s, 3);
1905   }
1906   ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
1907                     const Twine &NameStr = "",
1908                     Instruction *InsertBefor = nullptr);
1909   ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
1910                     const Twine &NameStr, BasicBlock *InsertAtEnd);
1911
1912   /// isValidOperands - Return true if a shufflevector instruction can be
1913   /// formed with the specified operands.
1914   static bool isValidOperands(const Value *V1, const Value *V2,
1915                               const Value *Mask);
1916
1917   /// getType - Overload to return most specific vector type.
1918   ///
1919   VectorType *getType() const {
1920     return cast<VectorType>(Instruction::getType());
1921   }
1922
1923   /// Transparently provide more efficient getOperand methods.
1924   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
1925
1926   Constant *getMask() const {
1927     return cast<Constant>(getOperand(2));
1928   }
1929
1930   /// getMaskValue - Return the index from the shuffle mask for the specified
1931   /// output result.  This is either -1 if the element is undef or a number less
1932   /// than 2*numelements.
1933   static int getMaskValue(Constant *Mask, unsigned i);
1934
1935   int getMaskValue(unsigned i) const {
1936     return getMaskValue(getMask(), i);
1937   }
1938
1939   /// getShuffleMask - Return the full mask for this instruction, where each
1940   /// element is the element number and undef's are returned as -1.
1941   static void getShuffleMask(Constant *Mask, SmallVectorImpl<int> &Result);
1942
1943   void getShuffleMask(SmallVectorImpl<int> &Result) const {
1944     return getShuffleMask(getMask(), Result);
1945   }
1946
1947   SmallVector<int, 16> getShuffleMask() const {
1948     SmallVector<int, 16> Mask;
1949     getShuffleMask(Mask);
1950     return Mask;
1951   }
1952
1953
1954   // Methods for support type inquiry through isa, cast, and dyn_cast:
1955   static inline bool classof(const Instruction *I) {
1956     return I->getOpcode() == Instruction::ShuffleVector;
1957   }
1958   static inline bool classof(const Value *V) {
1959     return isa<Instruction>(V) && classof(cast<Instruction>(V));
1960   }
1961 };
1962
1963 template <>
1964 struct OperandTraits<ShuffleVectorInst> :
1965   public FixedNumOperandTraits<ShuffleVectorInst, 3> {
1966 };
1967
1968 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ShuffleVectorInst, Value)
1969
1970 //===----------------------------------------------------------------------===//
1971 //                                ExtractValueInst Class
1972 //===----------------------------------------------------------------------===//
1973
1974 /// ExtractValueInst - This instruction extracts a struct member or array
1975 /// element value from an aggregate value.
1976 ///
1977 class ExtractValueInst : public UnaryInstruction {
1978   SmallVector<unsigned, 4> Indices;
1979
1980   ExtractValueInst(const ExtractValueInst &EVI);
1981   void init(ArrayRef<unsigned> Idxs, const Twine &NameStr);
1982
1983   /// Constructors - Create a extractvalue instruction with a base aggregate
1984   /// value and a list of indices.  The first ctor can optionally insert before
1985   /// an existing instruction, the second appends the new instruction to the
1986   /// specified BasicBlock.
1987   inline ExtractValueInst(Value *Agg,
1988                           ArrayRef<unsigned> Idxs,
1989                           const Twine &NameStr,
1990                           Instruction *InsertBefore);
1991   inline ExtractValueInst(Value *Agg,
1992                           ArrayRef<unsigned> Idxs,
1993                           const Twine &NameStr, BasicBlock *InsertAtEnd);
1994
1995   // allocate space for exactly one operand
1996   void *operator new(size_t s) {
1997     return User::operator new(s, 1);
1998   }
1999 protected:
2000   ExtractValueInst *clone_impl() const override;
2001
2002 public:
2003   static ExtractValueInst *Create(Value *Agg,
2004                                   ArrayRef<unsigned> Idxs,
2005                                   const Twine &NameStr = "",
2006                                   Instruction *InsertBefore = nullptr) {
2007     return new
2008       ExtractValueInst(Agg, Idxs, NameStr, InsertBefore);
2009   }
2010   static ExtractValueInst *Create(Value *Agg,
2011                                   ArrayRef<unsigned> Idxs,
2012                                   const Twine &NameStr,
2013                                   BasicBlock *InsertAtEnd) {
2014     return new ExtractValueInst(Agg, Idxs, NameStr, InsertAtEnd);
2015   }
2016
2017   /// getIndexedType - Returns the type of the element that would be extracted
2018   /// with an extractvalue instruction with the specified parameters.
2019   ///
2020   /// Null is returned if the indices are invalid for the specified type.
2021   static Type *getIndexedType(Type *Agg, ArrayRef<unsigned> Idxs);
2022
2023   typedef const unsigned* idx_iterator;
2024   inline idx_iterator idx_begin() const { return Indices.begin(); }
2025   inline idx_iterator idx_end()   const { return Indices.end(); }
2026   inline iterator_range<idx_iterator> indices() const {
2027     return iterator_range<idx_iterator>(idx_begin(), idx_end());
2028   }
2029
2030   Value *getAggregateOperand() {
2031     return getOperand(0);
2032   }
2033   const Value *getAggregateOperand() const {
2034     return getOperand(0);
2035   }
2036   static unsigned getAggregateOperandIndex() {
2037     return 0U;                      // get index for modifying correct operand
2038   }
2039
2040   ArrayRef<unsigned> getIndices() const {
2041     return Indices;
2042   }
2043
2044   unsigned getNumIndices() const {
2045     return (unsigned)Indices.size();
2046   }
2047
2048   bool hasIndices() const {
2049     return true;
2050   }
2051
2052   // Methods for support type inquiry through isa, cast, and dyn_cast:
2053   static inline bool classof(const Instruction *I) {
2054     return I->getOpcode() == Instruction::ExtractValue;
2055   }
2056   static inline bool classof(const Value *V) {
2057     return isa<Instruction>(V) && classof(cast<Instruction>(V));
2058   }
2059 };
2060
2061 ExtractValueInst::ExtractValueInst(Value *Agg,
2062                                    ArrayRef<unsigned> Idxs,
2063                                    const Twine &NameStr,
2064                                    Instruction *InsertBefore)
2065   : UnaryInstruction(checkGEPType(getIndexedType(Agg->getType(), Idxs)),
2066                      ExtractValue, Agg, InsertBefore) {
2067   init(Idxs, NameStr);
2068 }
2069 ExtractValueInst::ExtractValueInst(Value *Agg,
2070                                    ArrayRef<unsigned> Idxs,
2071                                    const Twine &NameStr,
2072                                    BasicBlock *InsertAtEnd)
2073   : UnaryInstruction(checkGEPType(getIndexedType(Agg->getType(), Idxs)),
2074                      ExtractValue, Agg, InsertAtEnd) {
2075   init(Idxs, NameStr);
2076 }
2077
2078
2079 //===----------------------------------------------------------------------===//
2080 //                                InsertValueInst Class
2081 //===----------------------------------------------------------------------===//
2082
2083 /// InsertValueInst - This instruction inserts a struct field of array element
2084 /// value into an aggregate value.
2085 ///
2086 class InsertValueInst : public Instruction {
2087   SmallVector<unsigned, 4> Indices;
2088
2089   void *operator new(size_t, unsigned) = delete;
2090   InsertValueInst(const InsertValueInst &IVI);
2091   void init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
2092             const Twine &NameStr);
2093
2094   /// Constructors - Create a insertvalue instruction with a base aggregate
2095   /// value, a value to insert, and a list of indices.  The first ctor can
2096   /// optionally insert before an existing instruction, the second appends
2097   /// the new instruction to the specified BasicBlock.
2098   inline InsertValueInst(Value *Agg, Value *Val,
2099                          ArrayRef<unsigned> Idxs,
2100                          const Twine &NameStr,
2101                          Instruction *InsertBefore);
2102   inline InsertValueInst(Value *Agg, Value *Val,
2103                          ArrayRef<unsigned> Idxs,
2104                          const Twine &NameStr, BasicBlock *InsertAtEnd);
2105
2106   /// Constructors - These two constructors are convenience methods because one
2107   /// and two index insertvalue instructions are so common.
2108   InsertValueInst(Value *Agg, Value *Val,
2109                   unsigned Idx, const Twine &NameStr = "",
2110                   Instruction *InsertBefore = nullptr);
2111   InsertValueInst(Value *Agg, Value *Val, unsigned Idx,
2112                   const Twine &NameStr, BasicBlock *InsertAtEnd);
2113 protected:
2114   InsertValueInst *clone_impl() const override;
2115 public:
2116   // allocate space for exactly two operands
2117   void *operator new(size_t s) {
2118     return User::operator new(s, 2);
2119   }
2120
2121   static InsertValueInst *Create(Value *Agg, Value *Val,
2122                                  ArrayRef<unsigned> Idxs,
2123                                  const Twine &NameStr = "",
2124                                  Instruction *InsertBefore = nullptr) {
2125     return new InsertValueInst(Agg, Val, Idxs, NameStr, InsertBefore);
2126   }
2127   static InsertValueInst *Create(Value *Agg, Value *Val,
2128                                  ArrayRef<unsigned> Idxs,
2129                                  const Twine &NameStr,
2130                                  BasicBlock *InsertAtEnd) {
2131     return new InsertValueInst(Agg, Val, Idxs, NameStr, InsertAtEnd);
2132   }
2133
2134   /// Transparently provide more efficient getOperand methods.
2135   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
2136
2137   typedef const unsigned* idx_iterator;
2138   inline idx_iterator idx_begin() const { return Indices.begin(); }
2139   inline idx_iterator idx_end()   const { return Indices.end(); }
2140   inline iterator_range<idx_iterator> indices() const {
2141     return iterator_range<idx_iterator>(idx_begin(), idx_end());
2142   }
2143
2144   Value *getAggregateOperand() {
2145     return getOperand(0);
2146   }
2147   const Value *getAggregateOperand() const {
2148     return getOperand(0);
2149   }
2150   static unsigned getAggregateOperandIndex() {
2151     return 0U;                      // get index for modifying correct operand
2152   }
2153
2154   Value *getInsertedValueOperand() {
2155     return getOperand(1);
2156   }
2157   const Value *getInsertedValueOperand() const {
2158     return getOperand(1);
2159   }
2160   static unsigned getInsertedValueOperandIndex() {
2161     return 1U;                      // get index for modifying correct operand
2162   }
2163
2164   ArrayRef<unsigned> getIndices() const {
2165     return Indices;
2166   }
2167
2168   unsigned getNumIndices() const {
2169     return (unsigned)Indices.size();
2170   }
2171
2172   bool hasIndices() const {
2173     return true;
2174   }
2175
2176   // Methods for support type inquiry through isa, cast, and dyn_cast:
2177   static inline bool classof(const Instruction *I) {
2178     return I->getOpcode() == Instruction::InsertValue;
2179   }
2180   static inline bool classof(const Value *V) {
2181     return isa<Instruction>(V) && classof(cast<Instruction>(V));
2182   }
2183 };
2184
2185 template <>
2186 struct OperandTraits<InsertValueInst> :
2187   public FixedNumOperandTraits<InsertValueInst, 2> {
2188 };
2189
2190 InsertValueInst::InsertValueInst(Value *Agg,
2191                                  Value *Val,
2192                                  ArrayRef<unsigned> Idxs,
2193                                  const Twine &NameStr,
2194                                  Instruction *InsertBefore)
2195   : Instruction(Agg->getType(), InsertValue,
2196                 OperandTraits<InsertValueInst>::op_begin(this),
2197                 2, InsertBefore) {
2198   init(Agg, Val, Idxs, NameStr);
2199 }
2200 InsertValueInst::InsertValueInst(Value *Agg,
2201                                  Value *Val,
2202                                  ArrayRef<unsigned> Idxs,
2203                                  const Twine &NameStr,
2204                                  BasicBlock *InsertAtEnd)
2205   : Instruction(Agg->getType(), InsertValue,
2206                 OperandTraits<InsertValueInst>::op_begin(this),
2207                 2, InsertAtEnd) {
2208   init(Agg, Val, Idxs, NameStr);
2209 }
2210
2211 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertValueInst, Value)
2212
2213 //===----------------------------------------------------------------------===//
2214 //                               PHINode Class
2215 //===----------------------------------------------------------------------===//
2216
2217 // PHINode - The PHINode class is used to represent the magical mystical PHI
2218 // node, that can not exist in nature, but can be synthesized in a computer
2219 // scientist's overactive imagination.
2220 //
2221 class PHINode : public Instruction {
2222   void *operator new(size_t, unsigned) = delete;
2223   /// ReservedSpace - The number of operands actually allocated.  NumOperands is
2224   /// the number actually in use.
2225   unsigned ReservedSpace;
2226   PHINode(const PHINode &PN);
2227   // allocate space for exactly zero operands
2228   void *operator new(size_t s) {
2229     return User::operator new(s);
2230   }
2231   explicit PHINode(Type *Ty, unsigned NumReservedValues,
2232                    const Twine &NameStr = "",
2233                    Instruction *InsertBefore = nullptr)
2234     : Instruction(Ty, Instruction::PHI, nullptr, 0, InsertBefore),
2235       ReservedSpace(NumReservedValues) {
2236     setName(NameStr);
2237     allocHungoffUses(ReservedSpace);
2238   }
2239
2240   PHINode(Type *Ty, unsigned NumReservedValues, const Twine &NameStr,
2241           BasicBlock *InsertAtEnd)
2242     : Instruction(Ty, Instruction::PHI, nullptr, 0, InsertAtEnd),
2243       ReservedSpace(NumReservedValues) {
2244     setName(NameStr);
2245     allocHungoffUses(ReservedSpace);
2246   }
2247 protected:
2248   // allocHungoffUses - this is more complicated than the generic
2249   // User::allocHungoffUses, because we have to allocate Uses for the incoming
2250   // values and pointers to the incoming blocks, all in one allocation.
2251   void allocHungoffUses(unsigned N) {
2252     User::allocHungoffUses(N, /* IsPhi */ true);
2253   }
2254
2255   PHINode *clone_impl() const override;
2256 public:
2257   /// Constructors - NumReservedValues is a hint for the number of incoming
2258   /// edges that this phi node will have (use 0 if you really have no idea).
2259   static PHINode *Create(Type *Ty, unsigned NumReservedValues,
2260                          const Twine &NameStr = "",
2261                          Instruction *InsertBefore = nullptr) {
2262     return new PHINode(Ty, NumReservedValues, NameStr, InsertBefore);
2263   }
2264   static PHINode *Create(Type *Ty, unsigned NumReservedValues,
2265                          const Twine &NameStr, BasicBlock *InsertAtEnd) {
2266     return new PHINode(Ty, NumReservedValues, NameStr, InsertAtEnd);
2267   }
2268
2269   /// Provide fast operand accessors
2270   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
2271
2272   // Block iterator interface. This provides access to the list of incoming
2273   // basic blocks, which parallels the list of incoming values.
2274
2275   typedef BasicBlock **block_iterator;
2276   typedef BasicBlock * const *const_block_iterator;
2277
2278   block_iterator block_begin() {
2279     Use::UserRef *ref =
2280       reinterpret_cast<Use::UserRef*>(op_begin() + ReservedSpace);
2281     return reinterpret_cast<block_iterator>(ref + 1);
2282   }
2283
2284   const_block_iterator block_begin() const {
2285     const Use::UserRef *ref =
2286       reinterpret_cast<const Use::UserRef*>(op_begin() + ReservedSpace);
2287     return reinterpret_cast<const_block_iterator>(ref + 1);
2288   }
2289
2290   block_iterator block_end() {
2291     return block_begin() + getNumOperands();
2292   }
2293
2294   const_block_iterator block_end() const {
2295     return block_begin() + getNumOperands();
2296   }
2297
2298   op_range incoming_values() { return operands(); }
2299
2300   const_op_range incoming_values() const { return operands(); }
2301
2302   /// getNumIncomingValues - Return the number of incoming edges
2303   ///
2304   unsigned getNumIncomingValues() const { return getNumOperands(); }
2305
2306   /// getIncomingValue - Return incoming value number x
2307   ///
2308   Value *getIncomingValue(unsigned i) const {
2309     return getOperand(i);
2310   }
2311   void setIncomingValue(unsigned i, Value *V) {
2312     setOperand(i, V);
2313   }
2314   static unsigned getOperandNumForIncomingValue(unsigned i) {
2315     return i;
2316   }
2317   static unsigned getIncomingValueNumForOperand(unsigned i) {
2318     return i;
2319   }
2320
2321   /// getIncomingBlock - Return incoming basic block number @p i.
2322   ///
2323   BasicBlock *getIncomingBlock(unsigned i) const {
2324     return block_begin()[i];
2325   }
2326
2327   /// getIncomingBlock - Return incoming basic block corresponding
2328   /// to an operand of the PHI.
2329   ///
2330   BasicBlock *getIncomingBlock(const Use &U) const {
2331     assert(this == U.getUser() && "Iterator doesn't point to PHI's Uses?");
2332     return getIncomingBlock(unsigned(&U - op_begin()));
2333   }
2334
2335   /// getIncomingBlock - Return incoming basic block corresponding
2336   /// to value use iterator.
2337   ///
2338   BasicBlock *getIncomingBlock(Value::const_user_iterator I) const {
2339     return getIncomingBlock(I.getUse());
2340   }
2341
2342   void setIncomingBlock(unsigned i, BasicBlock *BB) {
2343     block_begin()[i] = BB;
2344   }
2345
2346   /// addIncoming - Add an incoming value to the end of the PHI list
2347   ///
2348   void addIncoming(Value *V, BasicBlock *BB) {
2349     assert(V && "PHI node got a null value!");
2350     assert(BB && "PHI node got a null basic block!");
2351     assert(getType() == V->getType() &&
2352            "All operands to PHI node must be the same type as the PHI node!");
2353     if (getNumOperands() == ReservedSpace)
2354       growOperands();  // Get more space!
2355     // Initialize some new operands.
2356     setNumHungOffUseOperands(getNumOperands() + 1);
2357     setIncomingValue(getNumOperands() - 1, V);
2358     setIncomingBlock(getNumOperands() - 1, BB);
2359   }
2360
2361   /// removeIncomingValue - Remove an incoming value.  This is useful if a
2362   /// predecessor basic block is deleted.  The value removed is returned.
2363   ///
2364   /// If the last incoming value for a PHI node is removed (and DeletePHIIfEmpty
2365   /// is true), the PHI node is destroyed and any uses of it are replaced with
2366   /// dummy values.  The only time there should be zero incoming values to a PHI
2367   /// node is when the block is dead, so this strategy is sound.
2368   ///
2369   Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true);
2370
2371   Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) {
2372     int Idx = getBasicBlockIndex(BB);
2373     assert(Idx >= 0 && "Invalid basic block argument to remove!");
2374     return removeIncomingValue(Idx, DeletePHIIfEmpty);
2375   }
2376
2377   /// getBasicBlockIndex - Return the first index of the specified basic
2378   /// block in the value list for this PHI.  Returns -1 if no instance.
2379   ///
2380   int getBasicBlockIndex(const BasicBlock *BB) const {
2381     for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2382       if (block_begin()[i] == BB)
2383         return i;
2384     return -1;
2385   }
2386
2387   Value *getIncomingValueForBlock(const BasicBlock *BB) const {
2388     int Idx = getBasicBlockIndex(BB);
2389     assert(Idx >= 0 && "Invalid basic block argument!");
2390     return getIncomingValue(Idx);
2391   }
2392
2393   /// hasConstantValue - If the specified PHI node always merges together the
2394   /// same value, return the value, otherwise return null.
2395   Value *hasConstantValue() const;
2396
2397   /// Methods for support type inquiry through isa, cast, and dyn_cast:
2398   static inline bool classof(const Instruction *I) {
2399     return I->getOpcode() == Instruction::PHI;
2400   }
2401   static inline bool classof(const Value *V) {
2402     return isa<Instruction>(V) && classof(cast<Instruction>(V));
2403   }
2404  private:
2405   void growOperands();
2406 };
2407
2408 template <>
2409 struct OperandTraits<PHINode> : public HungoffOperandTraits<2> {
2410 };
2411
2412 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(PHINode, Value)
2413
2414 //===----------------------------------------------------------------------===//
2415 //                           LandingPadInst Class
2416 //===----------------------------------------------------------------------===//
2417
2418 //===---------------------------------------------------------------------------
2419 /// LandingPadInst - The landingpad instruction holds all of the information
2420 /// necessary to generate correct exception handling. The landingpad instruction
2421 /// cannot be moved from the top of a landing pad block, which itself is
2422 /// accessible only from the 'unwind' edge of an invoke. This uses the
2423 /// SubclassData field in Value to store whether or not the landingpad is a
2424 /// cleanup.
2425 ///
2426 class LandingPadInst : public Instruction {
2427   /// ReservedSpace - The number of operands actually allocated.  NumOperands is
2428   /// the number actually in use.
2429   unsigned ReservedSpace;
2430   LandingPadInst(const LandingPadInst &LP);
2431 public:
2432   enum ClauseType { Catch, Filter };
2433 private:
2434   void *operator new(size_t, unsigned) = delete;
2435   // Allocate space for exactly zero operands.
2436   void *operator new(size_t s) {
2437     return User::operator new(s);
2438   }
2439   void growOperands(unsigned Size);
2440   void init(unsigned NumReservedValues, const Twine &NameStr);
2441
2442   explicit LandingPadInst(Type *RetTy, unsigned NumReservedValues,
2443                           const Twine &NameStr, Instruction *InsertBefore);
2444   explicit LandingPadInst(Type *RetTy, unsigned NumReservedValues,
2445                           const Twine &NameStr, BasicBlock *InsertAtEnd);
2446
2447 protected:
2448   LandingPadInst *clone_impl() const override;
2449 public:
2450   /// Constructors - NumReservedClauses is a hint for the number of incoming
2451   /// clauses that this landingpad will have (use 0 if you really have no idea).
2452   static LandingPadInst *Create(Type *RetTy, unsigned NumReservedClauses,
2453                                 const Twine &NameStr = "",
2454                                 Instruction *InsertBefore = nullptr);
2455   static LandingPadInst *Create(Type *RetTy, unsigned NumReservedClauses,
2456                                 const Twine &NameStr, BasicBlock *InsertAtEnd);
2457
2458   /// Provide fast operand accessors
2459   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
2460
2461   /// isCleanup - Return 'true' if this landingpad instruction is a
2462   /// cleanup. I.e., it should be run when unwinding even if its landing pad
2463   /// doesn't catch the exception.
2464   bool isCleanup() const { return getSubclassDataFromInstruction() & 1; }
2465
2466   /// setCleanup - Indicate that this landingpad instruction is a cleanup.
2467   void setCleanup(bool V) {
2468     setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
2469                                (V ? 1 : 0));
2470   }
2471
2472   /// Add a catch or filter clause to the landing pad.
2473   void addClause(Constant *ClauseVal);
2474
2475   /// Get the value of the clause at index Idx. Use isCatch/isFilter to
2476   /// determine what type of clause this is.
2477   Constant *getClause(unsigned Idx) const {
2478     return cast<Constant>(getOperandList()[Idx]);
2479   }
2480
2481   /// isCatch - Return 'true' if the clause and index Idx is a catch clause.
2482   bool isCatch(unsigned Idx) const {
2483     return !isa<ArrayType>(getOperandList()[Idx]->getType());
2484   }
2485
2486   /// isFilter - Return 'true' if the clause and index Idx is a filter clause.
2487   bool isFilter(unsigned Idx) const {
2488     return isa<ArrayType>(getOperandList()[Idx]->getType());
2489   }
2490
2491   /// getNumClauses - Get the number of clauses for this landing pad.
2492   unsigned getNumClauses() const { return getNumOperands(); }
2493
2494   /// reserveClauses - Grow the size of the operand list to accommodate the new
2495   /// number of clauses.
2496   void reserveClauses(unsigned Size) { growOperands(Size); }
2497
2498   // Methods for support type inquiry through isa, cast, and dyn_cast:
2499   static inline bool classof(const Instruction *I) {
2500     return I->getOpcode() == Instruction::LandingPad;
2501   }
2502   static inline bool classof(const Value *V) {
2503     return isa<Instruction>(V) && classof(cast<Instruction>(V));
2504   }
2505 };
2506
2507 template <>
2508 struct OperandTraits<LandingPadInst> : public HungoffOperandTraits<1> {
2509 };
2510
2511 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(LandingPadInst, Value)
2512
2513 //===----------------------------------------------------------------------===//
2514 //                               ReturnInst Class
2515 //===----------------------------------------------------------------------===//
2516
2517 //===---------------------------------------------------------------------------
2518 /// ReturnInst - Return a value (possibly void), from a function.  Execution
2519 /// does not continue in this function any longer.
2520 ///
2521 class ReturnInst : public TerminatorInst {
2522   ReturnInst(const ReturnInst &RI);
2523
2524 private:
2525   // ReturnInst constructors:
2526   // ReturnInst()                  - 'ret void' instruction
2527   // ReturnInst(    null)          - 'ret void' instruction
2528   // ReturnInst(Value* X)          - 'ret X'    instruction
2529   // ReturnInst(    null, Inst *I) - 'ret void' instruction, insert before I
2530   // ReturnInst(Value* X, Inst *I) - 'ret X'    instruction, insert before I
2531   // ReturnInst(    null, BB *B)   - 'ret void' instruction, insert @ end of B
2532   // ReturnInst(Value* X, BB *B)   - 'ret X'    instruction, insert @ end of B
2533   //
2534   // NOTE: If the Value* passed is of type void then the constructor behaves as
2535   // if it was passed NULL.
2536   explicit ReturnInst(LLVMContext &C, Value *retVal = nullptr,
2537                       Instruction *InsertBefore = nullptr);
2538   ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd);
2539   explicit ReturnInst(LLVMContext &C, BasicBlock *InsertAtEnd);
2540 protected:
2541   ReturnInst *clone_impl() const override;
2542 public:
2543   static ReturnInst* Create(LLVMContext &C, Value *retVal = nullptr,
2544                             Instruction *InsertBefore = nullptr) {
2545     return new(!!retVal) ReturnInst(C, retVal, InsertBefore);
2546   }
2547   static ReturnInst* Create(LLVMContext &C, Value *retVal,
2548                             BasicBlock *InsertAtEnd) {
2549     return new(!!retVal) ReturnInst(C, retVal, InsertAtEnd);
2550   }
2551   static ReturnInst* Create(LLVMContext &C, BasicBlock *InsertAtEnd) {
2552     return new(0) ReturnInst(C, InsertAtEnd);
2553   }
2554   ~ReturnInst() override;
2555
2556   /// Provide fast operand accessors
2557   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
2558
2559   /// Convenience accessor. Returns null if there is no return value.
2560   Value *getReturnValue() const {
2561     return getNumOperands() != 0 ? getOperand(0) : nullptr;
2562   }
2563
2564   unsigned getNumSuccessors() const { return 0; }
2565
2566   // Methods for support type inquiry through isa, cast, and dyn_cast:
2567   static inline bool classof(const Instruction *I) {
2568     return (I->getOpcode() == Instruction::Ret);
2569   }
2570   static inline bool classof(const Value *V) {
2571     return isa<Instruction>(V) && classof(cast<Instruction>(V));
2572   }
2573  private:
2574   BasicBlock *getSuccessorV(unsigned idx) const override;
2575   unsigned getNumSuccessorsV() const override;
2576   void setSuccessorV(unsigned idx, BasicBlock *B) override;
2577 };
2578
2579 template <>
2580 struct OperandTraits<ReturnInst> : public VariadicOperandTraits<ReturnInst> {
2581 };
2582
2583 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ReturnInst, Value)
2584
2585 //===----------------------------------------------------------------------===//
2586 //                               BranchInst Class
2587 //===----------------------------------------------------------------------===//
2588
2589 //===---------------------------------------------------------------------------
2590 /// BranchInst - Conditional or Unconditional Branch instruction.
2591 ///
2592 class BranchInst : public TerminatorInst {
2593   /// Ops list - Branches are strange.  The operands are ordered:
2594   ///  [Cond, FalseDest,] TrueDest.  This makes some accessors faster because
2595   /// they don't have to check for cond/uncond branchness. These are mostly
2596   /// accessed relative from op_end().
2597   BranchInst(const BranchInst &BI);
2598   void AssertOK();
2599   // BranchInst constructors (where {B, T, F} are blocks, and C is a condition):
2600   // BranchInst(BB *B)                           - 'br B'
2601   // BranchInst(BB* T, BB *F, Value *C)          - 'br C, T, F'
2602   // BranchInst(BB* B, Inst *I)                  - 'br B'        insert before I
2603   // BranchInst(BB* T, BB *F, Value *C, Inst *I) - 'br C, T, F', insert before I
2604   // BranchInst(BB* B, BB *I)                    - 'br B'        insert at end
2605   // BranchInst(BB* T, BB *F, Value *C, BB *I)   - 'br C, T, F', insert at end
2606   explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = nullptr);
2607   BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2608              Instruction *InsertBefore = nullptr);
2609   BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd);
2610   BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2611              BasicBlock *InsertAtEnd);
2612 protected:
2613   BranchInst *clone_impl() const override;
2614 public:
2615   static BranchInst *Create(BasicBlock *IfTrue,
2616                             Instruction *InsertBefore = nullptr) {
2617     return new(1) BranchInst(IfTrue, InsertBefore);
2618   }
2619   static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
2620                             Value *Cond, Instruction *InsertBefore = nullptr) {
2621     return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore);
2622   }
2623   static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) {
2624     return new(1) BranchInst(IfTrue, InsertAtEnd);
2625   }
2626   static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
2627                             Value *Cond, BasicBlock *InsertAtEnd) {
2628     return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertAtEnd);
2629   }
2630
2631   /// Transparently provide more efficient getOperand methods.
2632   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
2633
2634   bool isUnconditional() const { return getNumOperands() == 1; }
2635   bool isConditional()   const { return getNumOperands() == 3; }
2636
2637   Value *getCondition() const {
2638     assert(isConditional() && "Cannot get condition of an uncond branch!");
2639     return Op<-3>();
2640   }
2641
2642   void setCondition(Value *V) {
2643     assert(isConditional() && "Cannot set condition of unconditional branch!");
2644     Op<-3>() = V;
2645   }
2646
2647   unsigned getNumSuccessors() const { return 1+isConditional(); }
2648
2649   BasicBlock *getSuccessor(unsigned i) const {
2650     assert(i < getNumSuccessors() && "Successor # out of range for Branch!");
2651     return cast_or_null<BasicBlock>((&Op<-1>() - i)->get());
2652   }
2653
2654   void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
2655     assert(idx < getNumSuccessors() && "Successor # out of range for Branch!");
2656     *(&Op<-1>() - idx) = (Value*)NewSucc;
2657   }
2658
2659   /// \brief Swap the successors of this branch instruction.
2660   ///
2661   /// Swaps the successors of the branch instruction. This also swaps any
2662   /// branch weight metadata associated with the instruction so that it
2663   /// continues to map correctly to each operand.
2664   void swapSuccessors();
2665
2666   // Methods for support type inquiry through isa, cast, and dyn_cast:
2667   static inline bool classof(const Instruction *I) {
2668     return (I->getOpcode() == Instruction::Br);
2669   }
2670   static inline bool classof(const Value *V) {
2671     return isa<Instruction>(V) && classof(cast<Instruction>(V));
2672   }
2673 private:
2674   BasicBlock *getSuccessorV(unsigned idx) const override;
2675   unsigned getNumSuccessorsV() const override;
2676   void setSuccessorV(unsigned idx, BasicBlock *B) override;
2677 };
2678
2679 template <>
2680 struct OperandTraits<BranchInst> : public VariadicOperandTraits<BranchInst, 1> {
2681 };
2682
2683 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BranchInst, Value)
2684
2685 //===----------------------------------------------------------------------===//
2686 //                               SwitchInst Class
2687 //===----------------------------------------------------------------------===//
2688
2689 //===---------------------------------------------------------------------------
2690 /// SwitchInst - Multiway switch
2691 ///
2692 class SwitchInst : public TerminatorInst {
2693   void *operator new(size_t, unsigned) = delete;
2694   unsigned ReservedSpace;
2695   // Operand[0]    = Value to switch on
2696   // Operand[1]    = Default basic block destination
2697   // Operand[2n  ] = Value to match
2698   // Operand[2n+1] = BasicBlock to go to on match
2699   SwitchInst(const SwitchInst &SI);
2700   void init(Value *Value, BasicBlock *Default, unsigned NumReserved);
2701   void growOperands();
2702   // allocate space for exactly zero operands
2703   void *operator new(size_t s) {
2704     return User::operator new(s);
2705   }
2706   /// SwitchInst ctor - Create a new switch instruction, specifying a value to
2707   /// switch on and a default destination.  The number of additional cases can
2708   /// be specified here to make memory allocation more efficient.  This
2709   /// constructor can also autoinsert before another instruction.
2710   SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2711              Instruction *InsertBefore);
2712
2713   /// SwitchInst ctor - Create a new switch instruction, specifying a value to
2714   /// switch on and a default destination.  The number of additional cases can
2715   /// be specified here to make memory allocation more efficient.  This
2716   /// constructor also autoinserts at the end of the specified BasicBlock.
2717   SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
2718              BasicBlock *InsertAtEnd);
2719 protected:
2720   SwitchInst *clone_impl() const override;
2721 public:
2722
2723   // -2
2724   static const unsigned DefaultPseudoIndex = static_cast<unsigned>(~0L-1);
2725
2726   template <class SwitchInstTy, class ConstantIntTy, class BasicBlockTy>
2727   class CaseIteratorT {
2728   protected:
2729
2730     SwitchInstTy *SI;
2731     unsigned Index;
2732
2733   public:
2734
2735     typedef CaseIteratorT<SwitchInstTy, ConstantIntTy, BasicBlockTy> Self;
2736
2737     /// Initializes case iterator for given SwitchInst and for given
2738     /// case number.
2739     CaseIteratorT(SwitchInstTy *SI, unsigned CaseNum) {
2740       this->SI = SI;
2741       Index = CaseNum;
2742     }
2743
2744     /// Initializes case iterator for given SwitchInst and for given
2745     /// TerminatorInst's successor index.
2746     static Self fromSuccessorIndex(SwitchInstTy *SI, unsigned SuccessorIndex) {
2747       assert(SuccessorIndex < SI->getNumSuccessors() &&
2748              "Successor index # out of range!");
2749       return SuccessorIndex != 0 ?
2750              Self(SI, SuccessorIndex - 1) :
2751              Self(SI, DefaultPseudoIndex);
2752     }
2753
2754     /// Resolves case value for current case.
2755     ConstantIntTy *getCaseValue() {
2756       assert(Index < SI->getNumCases() && "Index out the number of cases.");
2757       return reinterpret_cast<ConstantIntTy*>(SI->getOperand(2 + Index*2));
2758     }
2759
2760     /// Resolves successor for current case.
2761     BasicBlockTy *getCaseSuccessor() {
2762       assert((Index < SI->getNumCases() ||
2763               Index == DefaultPseudoIndex) &&
2764              "Index out the number of cases.");
2765       return SI->getSuccessor(getSuccessorIndex());
2766     }
2767
2768     /// Returns number of current case.
2769     unsigned getCaseIndex() const { return Index; }
2770
2771     /// Returns TerminatorInst's successor index for current case successor.
2772     unsigned getSuccessorIndex() const {
2773       assert((Index == DefaultPseudoIndex || Index < SI->getNumCases()) &&
2774              "Index out the number of cases.");
2775       return Index != DefaultPseudoIndex ? Index + 1 : 0;
2776     }
2777
2778     Self operator++() {
2779       // Check index correctness after increment.
2780       // Note: Index == getNumCases() means end().
2781       assert(Index+1 <= SI->getNumCases() && "Index out the number of cases.");
2782       ++Index;
2783       return *this;
2784     }
2785     Self operator++(int) {
2786       Self tmp = *this;
2787       ++(*this);
2788       return tmp;
2789     }
2790     Self operator--() {
2791       // Check index correctness after decrement.
2792       // Note: Index == getNumCases() means end().
2793       // Also allow "-1" iterator here. That will became valid after ++.
2794       assert((Index == 0 || Index-1 <= SI->getNumCases()) &&
2795              "Index out the number of cases.");
2796       --Index;
2797       return *this;
2798     }
2799     Self operator--(int) {
2800       Self tmp = *this;
2801       --(*this);
2802       return tmp;
2803     }
2804     bool operator==(const Self& RHS) const {
2805       assert(RHS.SI == SI && "Incompatible operators.");
2806       return RHS.Index == Index;
2807     }
2808     bool operator!=(const Self& RHS) const {
2809       assert(RHS.SI == SI && "Incompatible operators.");
2810       return RHS.Index != Index;
2811     }
2812     Self &operator*() {
2813       return *this;
2814     }
2815   };
2816
2817   typedef CaseIteratorT<const SwitchInst, const ConstantInt, const BasicBlock>
2818     ConstCaseIt;
2819
2820   class CaseIt : public CaseIteratorT<SwitchInst, ConstantInt, BasicBlock> {
2821
2822     typedef CaseIteratorT<SwitchInst, ConstantInt, BasicBlock> ParentTy;
2823
2824   public:
2825
2826     CaseIt(const ParentTy& Src) : ParentTy(Src) {}
2827     CaseIt(SwitchInst *SI, unsigned CaseNum) : ParentTy(SI, CaseNum) {}
2828
2829     /// Sets the new value for current case.
2830     void setValue(ConstantInt *V) {
2831       assert(Index < SI->getNumCases() && "Index out the number of cases.");
2832       SI->setOperand(2 + Index*2, reinterpret_cast<Value*>(V));
2833     }
2834
2835     /// Sets the new successor for current case.
2836     void setSuccessor(BasicBlock *S) {
2837       SI->setSuccessor(getSuccessorIndex(), S);
2838     }
2839   };
2840
2841   static SwitchInst *Create(Value *Value, BasicBlock *Default,
2842                             unsigned NumCases,
2843                             Instruction *InsertBefore = nullptr) {
2844     return new SwitchInst(Value, Default, NumCases, InsertBefore);
2845   }
2846   static SwitchInst *Create(Value *Value, BasicBlock *Default,
2847                             unsigned NumCases, BasicBlock *InsertAtEnd) {
2848     return new SwitchInst(Value, Default, NumCases, InsertAtEnd);
2849   }
2850
2851   /// Provide fast operand accessors
2852   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
2853
2854   // Accessor Methods for Switch stmt
2855   Value *getCondition() const { return getOperand(0); }
2856   void setCondition(Value *V) { setOperand(0, V); }
2857
2858   BasicBlock *getDefaultDest() const {
2859     return cast<BasicBlock>(getOperand(1));
2860   }
2861
2862   void setDefaultDest(BasicBlock *DefaultCase) {
2863     setOperand(1, reinterpret_cast<Value*>(DefaultCase));
2864   }
2865
2866   /// getNumCases - return the number of 'cases' in this switch instruction,
2867   /// except the default case
2868   unsigned getNumCases() const {
2869     return getNumOperands()/2 - 1;
2870   }
2871
2872   /// Returns a read/write iterator that points to the first
2873   /// case in SwitchInst.
2874   CaseIt case_begin() {
2875     return CaseIt(this, 0);
2876   }
2877   /// Returns a read-only iterator that points to the first
2878   /// case in the SwitchInst.
2879   ConstCaseIt case_begin() const {
2880     return ConstCaseIt(this, 0);
2881   }
2882
2883   /// Returns a read/write iterator that points one past the last
2884   /// in the SwitchInst.
2885   CaseIt case_end() {
2886     return CaseIt(this, getNumCases());
2887   }
2888   /// Returns a read-only iterator that points one past the last
2889   /// in the SwitchInst.
2890   ConstCaseIt case_end() const {
2891     return ConstCaseIt(this, getNumCases());
2892   }
2893
2894   /// cases - iteration adapter for range-for loops.
2895   iterator_range<CaseIt> cases() {
2896     return iterator_range<CaseIt>(case_begin(), case_end());
2897   }
2898
2899   /// cases - iteration adapter for range-for loops.
2900   iterator_range<ConstCaseIt> cases() const {
2901     return iterator_range<ConstCaseIt>(case_begin(), case_end());
2902   }
2903
2904   /// Returns an iterator that points to the default case.
2905   /// Note: this iterator allows to resolve successor only. Attempt
2906   /// to resolve case value causes an assertion.
2907   /// Also note, that increment and decrement also causes an assertion and
2908   /// makes iterator invalid.
2909   CaseIt case_default() {
2910     return CaseIt(this, DefaultPseudoIndex);
2911   }
2912   ConstCaseIt case_default() const {
2913     return ConstCaseIt(this, DefaultPseudoIndex);
2914   }
2915
2916   /// findCaseValue - Search all of the case values for the specified constant.
2917   /// If it is explicitly handled, return the case iterator of it, otherwise
2918   /// return default case iterator to indicate
2919   /// that it is handled by the default handler.
2920   CaseIt findCaseValue(const ConstantInt *C) {
2921     for (CaseIt i = case_begin(), e = case_end(); i != e; ++i)
2922       if (i.getCaseValue() == C)
2923         return i;
2924     return case_default();
2925   }
2926   ConstCaseIt findCaseValue(const ConstantInt *C) const {
2927     for (ConstCaseIt i = case_begin(), e = case_end(); i != e; ++i)
2928       if (i.getCaseValue() == C)
2929         return i;
2930     return case_default();
2931   }
2932
2933   /// findCaseDest - Finds the unique case value for a given successor. Returns
2934   /// null if the successor is not found, not unique, or is the default case.
2935   ConstantInt *findCaseDest(BasicBlock *BB) {
2936     if (BB == getDefaultDest()) return nullptr;
2937
2938     ConstantInt *CI = nullptr;
2939     for (CaseIt i = case_begin(), e = case_end(); i != e; ++i) {
2940       if (i.getCaseSuccessor() == BB) {
2941         if (CI) return nullptr;   // Multiple cases lead to BB.
2942         else CI = i.getCaseValue();
2943       }
2944     }
2945     return CI;
2946   }
2947
2948   /// addCase - Add an entry to the switch instruction...
2949   /// Note:
2950   /// This action invalidates case_end(). Old case_end() iterator will
2951   /// point to the added case.
2952   void addCase(ConstantInt *OnVal, BasicBlock *Dest);
2953
2954   /// removeCase - This method removes the specified case and its successor
2955   /// from the switch instruction. Note that this operation may reorder the
2956   /// remaining cases at index idx and above.
2957   /// Note:
2958   /// This action invalidates iterators for all cases following the one removed,
2959   /// including the case_end() iterator.
2960   void removeCase(CaseIt i);
2961
2962   unsigned getNumSuccessors() const { return getNumOperands()/2; }
2963   BasicBlock *getSuccessor(unsigned idx) const {
2964     assert(idx < getNumSuccessors() &&"Successor idx out of range for switch!");
2965     return cast<BasicBlock>(getOperand(idx*2+1));
2966   }
2967   void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
2968     assert(idx < getNumSuccessors() && "Successor # out of range for switch!");
2969     setOperand(idx*2+1, (Value*)NewSucc);
2970   }
2971
2972   // Methods for support type inquiry through isa, cast, and dyn_cast:
2973   static inline bool classof(const Instruction *I) {
2974     return I->getOpcode() == Instruction::Switch;
2975   }
2976   static inline bool classof(const Value *V) {
2977     return isa<Instruction>(V) && classof(cast<Instruction>(V));
2978   }
2979 private:
2980   BasicBlock *getSuccessorV(unsigned idx) const override;
2981   unsigned getNumSuccessorsV() const override;
2982   void setSuccessorV(unsigned idx, BasicBlock *B) override;
2983 };
2984
2985 template <>
2986 struct OperandTraits<SwitchInst> : public HungoffOperandTraits<2> {
2987 };
2988
2989 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SwitchInst, Value)
2990
2991
2992 //===----------------------------------------------------------------------===//
2993 //                             IndirectBrInst Class
2994 //===----------------------------------------------------------------------===//
2995
2996 //===---------------------------------------------------------------------------
2997 /// IndirectBrInst - Indirect Branch Instruction.
2998 ///
2999 class IndirectBrInst : public TerminatorInst {
3000   void *operator new(size_t, unsigned) = delete;
3001   unsigned ReservedSpace;
3002   // Operand[0]    = Value to switch on
3003   // Operand[1]    = Default basic block destination
3004   // Operand[2n  ] = Value to match
3005   // Operand[2n+1] = BasicBlock to go to on match
3006   IndirectBrInst(const IndirectBrInst &IBI);
3007   void init(Value *Address, unsigned NumDests);
3008   void growOperands();
3009   // allocate space for exactly zero operands
3010   void *operator new(size_t s) {
3011     return User::operator new(s);
3012   }
3013   /// IndirectBrInst ctor - Create a new indirectbr instruction, specifying an
3014   /// Address to jump to.  The number of expected destinations can be specified
3015   /// here to make memory allocation more efficient.  This constructor can also
3016   /// autoinsert before another instruction.
3017   IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore);
3018
3019   /// IndirectBrInst ctor - Create a new indirectbr instruction, specifying an
3020   /// Address to jump to.  The number of expected destinations can be specified
3021   /// here to make memory allocation more efficient.  This constructor also
3022   /// autoinserts at the end of the specified BasicBlock.
3023   IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd);
3024 protected:
3025   IndirectBrInst *clone_impl() const override;
3026 public:
3027   static IndirectBrInst *Create(Value *Address, unsigned NumDests,
3028                                 Instruction *InsertBefore = nullptr) {
3029     return new IndirectBrInst(Address, NumDests, InsertBefore);
3030   }
3031   static IndirectBrInst *Create(Value *Address, unsigned NumDests,
3032                                 BasicBlock *InsertAtEnd) {
3033     return new IndirectBrInst(Address, NumDests, InsertAtEnd);
3034   }
3035
3036   /// Provide fast operand accessors.
3037   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
3038
3039   // Accessor Methods for IndirectBrInst instruction.
3040   Value *getAddress() { return getOperand(0); }
3041   const Value *getAddress() const { return getOperand(0); }
3042   void setAddress(Value *V) { setOperand(0, V); }
3043
3044
3045   /// getNumDestinations - return the number of possible destinations in this
3046   /// indirectbr instruction.
3047   unsigned getNumDestinations() const { return getNumOperands()-1; }
3048
3049   /// getDestination - Return the specified destination.
3050   BasicBlock *getDestination(unsigned i) { return getSuccessor(i); }
3051   const BasicBlock *getDestination(unsigned i) const { return getSuccessor(i); }
3052
3053   /// addDestination - Add a destination.
3054   ///
3055   void addDestination(BasicBlock *Dest);
3056
3057   /// removeDestination - This method removes the specified successor from the
3058   /// indirectbr instruction.
3059   void removeDestination(unsigned i);
3060
3061   unsigned getNumSuccessors() const { return getNumOperands()-1; }
3062   BasicBlock *getSuccessor(unsigned i) const {
3063     return cast<BasicBlock>(getOperand(i+1));
3064   }
3065   void setSuccessor(unsigned i, BasicBlock *NewSucc) {
3066     setOperand(i+1, (Value*)NewSucc);
3067   }
3068
3069   // Methods for support type inquiry through isa, cast, and dyn_cast:
3070   static inline bool classof(const Instruction *I) {
3071     return I->getOpcode() == Instruction::IndirectBr;
3072   }
3073   static inline bool classof(const Value *V) {
3074     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3075   }
3076 private:
3077   BasicBlock *getSuccessorV(unsigned idx) const override;
3078   unsigned getNumSuccessorsV() const override;
3079   void setSuccessorV(unsigned idx, BasicBlock *B) override;
3080 };
3081
3082 template <>
3083 struct OperandTraits<IndirectBrInst> : public HungoffOperandTraits<1> {
3084 };
3085
3086 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(IndirectBrInst, Value)
3087
3088
3089 //===----------------------------------------------------------------------===//
3090 //                               InvokeInst Class
3091 //===----------------------------------------------------------------------===//
3092
3093 /// InvokeInst - Invoke instruction.  The SubclassData field is used to hold the
3094 /// calling convention of the call.
3095 ///
3096 class InvokeInst : public TerminatorInst {
3097   AttributeSet AttributeList;
3098   FunctionType *FTy;
3099   InvokeInst(const InvokeInst &BI);
3100   void init(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
3101             ArrayRef<Value *> Args, const Twine &NameStr) {
3102     init(cast<FunctionType>(
3103              cast<PointerType>(Func->getType())->getElementType()),
3104          Func, IfNormal, IfException, Args, NameStr);
3105   }
3106   void init(FunctionType *FTy, Value *Func, BasicBlock *IfNormal,
3107             BasicBlock *IfException, ArrayRef<Value *> Args,
3108             const Twine &NameStr);
3109
3110   /// Construct an InvokeInst given a range of arguments.
3111   ///
3112   /// \brief Construct an InvokeInst from a range of arguments
3113   inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
3114                     ArrayRef<Value *> Args, unsigned Values,
3115                     const Twine &NameStr, Instruction *InsertBefore)
3116       : InvokeInst(cast<FunctionType>(
3117                        cast<PointerType>(Func->getType())->getElementType()),
3118                    Func, IfNormal, IfException, Args, Values, NameStr,
3119                    InsertBefore) {}
3120
3121   inline InvokeInst(FunctionType *Ty, Value *Func, BasicBlock *IfNormal,
3122                     BasicBlock *IfException, ArrayRef<Value *> Args,
3123                     unsigned Values, const Twine &NameStr,
3124                     Instruction *InsertBefore);
3125   /// Construct an InvokeInst given a range of arguments.
3126   ///
3127   /// \brief Construct an InvokeInst from a range of arguments
3128   inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
3129                     ArrayRef<Value *> Args, unsigned Values,
3130                     const Twine &NameStr, BasicBlock *InsertAtEnd);
3131 protected:
3132   InvokeInst *clone_impl() const override;
3133 public:
3134   static InvokeInst *Create(Value *Func,
3135                             BasicBlock *IfNormal, BasicBlock *IfException,
3136                             ArrayRef<Value *> Args, const Twine &NameStr = "",
3137                             Instruction *InsertBefore = nullptr) {
3138     return Create(cast<FunctionType>(
3139                       cast<PointerType>(Func->getType())->getElementType()),
3140                   Func, IfNormal, IfException, Args, NameStr, InsertBefore);
3141   }
3142   static InvokeInst *Create(FunctionType *Ty, Value *Func, BasicBlock *IfNormal,
3143                             BasicBlock *IfException, ArrayRef<Value *> Args,
3144                             const Twine &NameStr = "",
3145                             Instruction *InsertBefore = nullptr) {
3146     unsigned Values = unsigned(Args.size()) + 3;
3147     return new (Values) InvokeInst(Ty, Func, IfNormal, IfException, Args,
3148                                    Values, NameStr, InsertBefore);
3149   }
3150   static InvokeInst *Create(Value *Func,
3151                             BasicBlock *IfNormal, BasicBlock *IfException,
3152                             ArrayRef<Value *> Args, const Twine &NameStr,
3153                             BasicBlock *InsertAtEnd) {
3154     unsigned Values = unsigned(Args.size()) + 3;
3155     return new(Values) InvokeInst(Func, IfNormal, IfException, Args,
3156                                   Values, NameStr, InsertAtEnd);
3157   }
3158
3159   /// Provide fast operand accessors
3160   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
3161
3162   FunctionType *getFunctionType() const { return FTy; }
3163
3164   void mutateFunctionType(FunctionType *FTy) {
3165     mutateType(FTy->getReturnType());
3166     this->FTy = FTy;
3167   }
3168
3169   /// getNumArgOperands - Return the number of invoke arguments.
3170   ///
3171   unsigned getNumArgOperands() const { return getNumOperands() - 3; }
3172
3173   /// getArgOperand/setArgOperand - Return/set the i-th invoke argument.
3174   ///
3175   Value *getArgOperand(unsigned i) const { return getOperand(i); }
3176   void setArgOperand(unsigned i, Value *v) { setOperand(i, v); }
3177
3178   /// arg_operands - iteration adapter for range-for loops.
3179   iterator_range<op_iterator> arg_operands() {
3180     return iterator_range<op_iterator>(op_begin(), op_end() - 3);
3181   }
3182
3183   /// arg_operands - iteration adapter for range-for loops.
3184   iterator_range<const_op_iterator> arg_operands() const {
3185     return iterator_range<const_op_iterator>(op_begin(), op_end() - 3);
3186   }
3187
3188   /// \brief Wrappers for getting the \c Use of a invoke argument.
3189   const Use &getArgOperandUse(unsigned i) const { return getOperandUse(i); }
3190   Use &getArgOperandUse(unsigned i) { return getOperandUse(i); }
3191
3192   /// getCallingConv/setCallingConv - Get or set the calling convention of this
3193   /// function call.
3194   CallingConv::ID getCallingConv() const {
3195     return static_cast<CallingConv::ID>(getSubclassDataFromInstruction());
3196   }
3197   void setCallingConv(CallingConv::ID CC) {
3198     setInstructionSubclassData(static_cast<unsigned>(CC));
3199   }
3200
3201   /// getAttributes - Return the parameter attributes for this invoke.
3202   ///
3203   const AttributeSet &getAttributes() const { return AttributeList; }
3204
3205   /// setAttributes - Set the parameter attributes for this invoke.
3206   ///
3207   void setAttributes(const AttributeSet &Attrs) { AttributeList = Attrs; }
3208
3209   /// addAttribute - adds the attribute to the list of attributes.
3210   void addAttribute(unsigned i, Attribute::AttrKind attr);
3211
3212   /// removeAttribute - removes the attribute from the list of attributes.
3213   void removeAttribute(unsigned i, Attribute attr);
3214
3215   /// \brief adds the dereferenceable attribute to the list of attributes.
3216   void addDereferenceableAttr(unsigned i, uint64_t Bytes);
3217
3218   /// \brief adds the dereferenceable_or_null attribute to the list of
3219   /// attributes.
3220   void addDereferenceableOrNullAttr(unsigned i, uint64_t Bytes);
3221
3222   /// \brief Determine whether this call has the given attribute.
3223   bool hasFnAttr(Attribute::AttrKind A) const {
3224     assert(A != Attribute::NoBuiltin &&
3225            "Use CallInst::isNoBuiltin() to check for Attribute::NoBuiltin");
3226     return hasFnAttrImpl(A);
3227   }
3228
3229   /// \brief Determine whether the call or the callee has the given attributes.
3230   bool paramHasAttr(unsigned i, Attribute::AttrKind A) const;
3231
3232   /// \brief Extract the alignment for a call or parameter (0=unknown).
3233   unsigned getParamAlignment(unsigned i) const {
3234     return AttributeList.getParamAlignment(i);
3235   }
3236
3237   /// \brief Extract the number of dereferenceable bytes for a call or
3238   /// parameter (0=unknown).
3239   uint64_t getDereferenceableBytes(unsigned i) const {
3240     return AttributeList.getDereferenceableBytes(i);
3241   }
3242   
3243   /// \brief Extract the number of dereferenceable_or_null bytes for a call or
3244   /// parameter (0=unknown).
3245   uint64_t getDereferenceableOrNullBytes(unsigned i) const {
3246     return AttributeList.getDereferenceableOrNullBytes(i);
3247   }
3248
3249   /// \brief Return true if the call should not be treated as a call to a
3250   /// builtin.
3251   bool isNoBuiltin() const {
3252     // We assert in hasFnAttr if one passes in Attribute::NoBuiltin, so we have
3253     // to check it by hand.
3254     return hasFnAttrImpl(Attribute::NoBuiltin) &&
3255       !hasFnAttrImpl(Attribute::Builtin);
3256   }
3257
3258   /// \brief Return true if the call should not be inlined.
3259   bool isNoInline() const { return hasFnAttr(Attribute::NoInline); }
3260   void setIsNoInline() {
3261     addAttribute(AttributeSet::FunctionIndex, Attribute::NoInline);
3262   }
3263
3264   /// \brief Determine if the call does not access memory.
3265   bool doesNotAccessMemory() const {
3266     return hasFnAttr(Attribute::ReadNone);
3267   }
3268   void setDoesNotAccessMemory() {
3269     addAttribute(AttributeSet::FunctionIndex, Attribute::ReadNone);
3270   }
3271
3272   /// \brief Determine if the call does not access or only reads memory.
3273   bool onlyReadsMemory() const {
3274     return doesNotAccessMemory() || hasFnAttr(Attribute::ReadOnly);
3275   }
3276   void setOnlyReadsMemory() {
3277     addAttribute(AttributeSet::FunctionIndex, Attribute::ReadOnly);
3278   }
3279
3280   /// \brief Determine if the call cannot return.
3281   bool doesNotReturn() const { return hasFnAttr(Attribute::NoReturn); }
3282   void setDoesNotReturn() {
3283     addAttribute(AttributeSet::FunctionIndex, Attribute::NoReturn);
3284   }
3285
3286   /// \brief Determine if the call cannot unwind.
3287   bool doesNotThrow() const { return hasFnAttr(Attribute::NoUnwind); }
3288   void setDoesNotThrow() {
3289     addAttribute(AttributeSet::FunctionIndex, Attribute::NoUnwind);
3290   }
3291
3292   /// \brief Determine if the invoke cannot be duplicated.
3293   bool cannotDuplicate() const {return hasFnAttr(Attribute::NoDuplicate); }
3294   void setCannotDuplicate() {
3295     addAttribute(AttributeSet::FunctionIndex, Attribute::NoDuplicate);
3296   }
3297
3298   /// \brief Determine if the call returns a structure through first
3299   /// pointer argument.
3300   bool hasStructRetAttr() const {
3301     // Be friendly and also check the callee.
3302     return paramHasAttr(1, Attribute::StructRet);
3303   }
3304
3305   /// \brief Determine if any call argument is an aggregate passed by value.
3306   bool hasByValArgument() const {
3307     return AttributeList.hasAttrSomewhere(Attribute::ByVal);
3308   }
3309
3310   /// getCalledFunction - Return the function called, or null if this is an
3311   /// indirect function invocation.
3312   ///
3313   Function *getCalledFunction() const {
3314     return dyn_cast<Function>(Op<-3>());
3315   }
3316
3317   /// getCalledValue - Get a pointer to the function that is invoked by this
3318   /// instruction
3319   const Value *getCalledValue() const { return Op<-3>(); }
3320         Value *getCalledValue()       { return Op<-3>(); }
3321
3322   /// setCalledFunction - Set the function called.
3323   void setCalledFunction(Value* Fn) {
3324     setCalledFunction(
3325         cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType()),
3326         Fn);
3327   }
3328   void setCalledFunction(FunctionType *FTy, Value *Fn) {
3329     this->FTy = FTy;
3330     assert(FTy == cast<FunctionType>(
3331                       cast<PointerType>(Fn->getType())->getElementType()));
3332     Op<-3>() = Fn;
3333   }
3334
3335   // get*Dest - Return the destination basic blocks...
3336   BasicBlock *getNormalDest() const {
3337     return cast<BasicBlock>(Op<-2>());
3338   }
3339   BasicBlock *getUnwindDest() const {
3340     return cast<BasicBlock>(Op<-1>());
3341   }
3342   void setNormalDest(BasicBlock *B) {
3343     Op<-2>() = reinterpret_cast<Value*>(B);
3344   }
3345   void setUnwindDest(BasicBlock *B) {
3346     Op<-1>() = reinterpret_cast<Value*>(B);
3347   }
3348
3349   /// getLandingPadInst - Get the landingpad instruction from the landing pad
3350   /// block (the unwind destination).
3351   LandingPadInst *getLandingPadInst() const;
3352
3353   BasicBlock *getSuccessor(unsigned i) const {
3354     assert(i < 2 && "Successor # out of range for invoke!");
3355     return i == 0 ? getNormalDest() : getUnwindDest();
3356   }
3357
3358   void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
3359     assert(idx < 2 && "Successor # out of range for invoke!");
3360     *(&Op<-2>() + idx) = reinterpret_cast<Value*>(NewSucc);
3361   }
3362
3363   unsigned getNumSuccessors() const { return 2; }
3364
3365   // Methods for support type inquiry through isa, cast, and dyn_cast:
3366   static inline bool classof(const Instruction *I) {
3367     return (I->getOpcode() == Instruction::Invoke);
3368   }
3369   static inline bool classof(const Value *V) {
3370     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3371   }
3372
3373 private:
3374   BasicBlock *getSuccessorV(unsigned idx) const override;
3375   unsigned getNumSuccessorsV() const override;
3376   void setSuccessorV(unsigned idx, BasicBlock *B) override;
3377
3378   bool hasFnAttrImpl(Attribute::AttrKind A) const;
3379
3380   // Shadow Instruction::setInstructionSubclassData with a private forwarding
3381   // method so that subclasses cannot accidentally use it.
3382   void setInstructionSubclassData(unsigned short D) {
3383     Instruction::setInstructionSubclassData(D);
3384   }
3385 };
3386
3387 template <>
3388 struct OperandTraits<InvokeInst> : public VariadicOperandTraits<InvokeInst, 3> {
3389 };
3390
3391 InvokeInst::InvokeInst(FunctionType *Ty, Value *Func, BasicBlock *IfNormal,
3392                        BasicBlock *IfException, ArrayRef<Value *> Args,
3393                        unsigned Values, const Twine &NameStr,
3394                        Instruction *InsertBefore)
3395     : TerminatorInst(Ty->getReturnType(), Instruction::Invoke,
3396                      OperandTraits<InvokeInst>::op_end(this) - Values, Values,
3397                      InsertBefore) {
3398   init(Ty, Func, IfNormal, IfException, Args, NameStr);
3399 }
3400 InvokeInst::InvokeInst(Value *Func,
3401                        BasicBlock *IfNormal, BasicBlock *IfException,
3402                        ArrayRef<Value *> Args, unsigned Values,
3403                        const Twine &NameStr, BasicBlock *InsertAtEnd)
3404   : TerminatorInst(cast<FunctionType>(cast<PointerType>(Func->getType())
3405                                       ->getElementType())->getReturnType(),
3406                    Instruction::Invoke,
3407                    OperandTraits<InvokeInst>::op_end(this) - Values,
3408                    Values, InsertAtEnd) {
3409   init(Func, IfNormal, IfException, Args, NameStr);
3410 }
3411
3412 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InvokeInst, Value)
3413
3414 //===----------------------------------------------------------------------===//
3415 //                              ResumeInst Class
3416 //===----------------------------------------------------------------------===//
3417
3418 //===---------------------------------------------------------------------------
3419 /// ResumeInst - Resume the propagation of an exception.
3420 ///
3421 class ResumeInst : public TerminatorInst {
3422   ResumeInst(const ResumeInst &RI);
3423
3424   explicit ResumeInst(Value *Exn, Instruction *InsertBefore=nullptr);
3425   ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
3426 protected:
3427   ResumeInst *clone_impl() const override;
3428 public:
3429   static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = nullptr) {
3430     return new(1) ResumeInst(Exn, InsertBefore);
3431   }
3432   static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) {
3433     return new(1) ResumeInst(Exn, InsertAtEnd);
3434   }
3435
3436   /// Provide fast operand accessors
3437   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
3438
3439   /// Convenience accessor.
3440   Value *getValue() const { return Op<0>(); }
3441
3442   unsigned getNumSuccessors() const { return 0; }
3443
3444   // Methods for support type inquiry through isa, cast, and dyn_cast:
3445   static inline bool classof(const Instruction *I) {
3446     return I->getOpcode() == Instruction::Resume;
3447   }
3448   static inline bool classof(const Value *V) {
3449     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3450   }
3451 private:
3452   BasicBlock *getSuccessorV(unsigned idx) const override;
3453   unsigned getNumSuccessorsV() const override;
3454   void setSuccessorV(unsigned idx, BasicBlock *B) override;
3455 };
3456
3457 template <>
3458 struct OperandTraits<ResumeInst> :
3459     public FixedNumOperandTraits<ResumeInst, 1> {
3460 };
3461
3462 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ResumeInst, Value)
3463
3464 //===----------------------------------------------------------------------===//
3465 //                           UnreachableInst Class
3466 //===----------------------------------------------------------------------===//
3467
3468 //===---------------------------------------------------------------------------
3469 /// UnreachableInst - This function has undefined behavior.  In particular, the
3470 /// presence of this instruction indicates some higher level knowledge that the
3471 /// end of the block cannot be reached.
3472 ///
3473 class UnreachableInst : public TerminatorInst {
3474   void *operator new(size_t, unsigned) = delete;
3475 protected:
3476   UnreachableInst *clone_impl() const override;
3477
3478 public:
3479   // allocate space for exactly zero operands
3480   void *operator new(size_t s) {
3481     return User::operator new(s, 0);
3482   }
3483   explicit UnreachableInst(LLVMContext &C, Instruction *InsertBefore = nullptr);
3484   explicit UnreachableInst(LLVMContext &C, BasicBlock *InsertAtEnd);
3485
3486   unsigned getNumSuccessors() const { return 0; }
3487
3488   // Methods for support type inquiry through isa, cast, and dyn_cast:
3489   static inline bool classof(const Instruction *I) {
3490     return I->getOpcode() == Instruction::Unreachable;
3491   }
3492   static inline bool classof(const Value *V) {
3493     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3494   }
3495 private:
3496   BasicBlock *getSuccessorV(unsigned idx) const override;
3497   unsigned getNumSuccessorsV() const override;
3498   void setSuccessorV(unsigned idx, BasicBlock *B) override;
3499 };
3500
3501 //===----------------------------------------------------------------------===//
3502 //                                 TruncInst Class
3503 //===----------------------------------------------------------------------===//
3504
3505 /// \brief This class represents a truncation of integer types.
3506 class TruncInst : public CastInst {
3507 protected:
3508   /// \brief Clone an identical TruncInst
3509   TruncInst *clone_impl() const override;
3510
3511 public:
3512   /// \brief Constructor with insert-before-instruction semantics
3513   TruncInst(
3514     Value *S,                           ///< The value to be truncated
3515     Type *Ty,                           ///< The (smaller) type to truncate to
3516     const Twine &NameStr = "",          ///< A name for the new instruction
3517     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3518   );
3519
3520   /// \brief Constructor with insert-at-end-of-block semantics
3521   TruncInst(
3522     Value *S,                     ///< The value to be truncated
3523     Type *Ty,                     ///< The (smaller) type to truncate to
3524     const Twine &NameStr,         ///< A name for the new instruction
3525     BasicBlock *InsertAtEnd       ///< The block to insert the instruction into
3526   );
3527
3528   /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
3529   static inline bool classof(const Instruction *I) {
3530     return I->getOpcode() == Trunc;
3531   }
3532   static inline bool classof(const Value *V) {
3533     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3534   }
3535 };
3536
3537 //===----------------------------------------------------------------------===//
3538 //                                 ZExtInst Class
3539 //===----------------------------------------------------------------------===//
3540
3541 /// \brief This class represents zero extension of integer types.
3542 class ZExtInst : public CastInst {
3543 protected:
3544   /// \brief Clone an identical ZExtInst
3545   ZExtInst *clone_impl() const override;
3546
3547 public:
3548   /// \brief Constructor with insert-before-instruction semantics
3549   ZExtInst(
3550     Value *S,                           ///< The value to be zero extended
3551     Type *Ty,                           ///< The type to zero extend to
3552     const Twine &NameStr = "",          ///< A name for the new instruction
3553     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3554   );
3555
3556   /// \brief Constructor with insert-at-end semantics.
3557   ZExtInst(
3558     Value *S,                     ///< The value to be zero extended
3559     Type *Ty,                     ///< The type to zero extend to
3560     const Twine &NameStr,         ///< A name for the new instruction
3561     BasicBlock *InsertAtEnd       ///< The block to insert the instruction into
3562   );
3563
3564   /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
3565   static inline bool classof(const Instruction *I) {
3566     return I->getOpcode() == ZExt;
3567   }
3568   static inline bool classof(const Value *V) {
3569     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3570   }
3571 };
3572
3573 //===----------------------------------------------------------------------===//
3574 //                                 SExtInst Class
3575 //===----------------------------------------------------------------------===//
3576
3577 /// \brief This class represents a sign extension of integer types.
3578 class SExtInst : public CastInst {
3579 protected:
3580   /// \brief Clone an identical SExtInst
3581   SExtInst *clone_impl() const override;
3582
3583 public:
3584   /// \brief Constructor with insert-before-instruction semantics
3585   SExtInst(
3586     Value *S,                           ///< The value to be sign extended
3587     Type *Ty,                           ///< The type to sign extend to
3588     const Twine &NameStr = "",          ///< A name for the new instruction
3589     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3590   );
3591
3592   /// \brief Constructor with insert-at-end-of-block semantics
3593   SExtInst(
3594     Value *S,                     ///< The value to be sign extended
3595     Type *Ty,                     ///< The type to sign extend to
3596     const Twine &NameStr,         ///< A name for the new instruction
3597     BasicBlock *InsertAtEnd       ///< The block to insert the instruction into
3598   );
3599
3600   /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
3601   static inline bool classof(const Instruction *I) {
3602     return I->getOpcode() == SExt;
3603   }
3604   static inline bool classof(const Value *V) {
3605     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3606   }
3607 };
3608
3609 //===----------------------------------------------------------------------===//
3610 //                                 FPTruncInst Class
3611 //===----------------------------------------------------------------------===//
3612
3613 /// \brief This class represents a truncation of floating point types.
3614 class FPTruncInst : public CastInst {
3615 protected:
3616   /// \brief Clone an identical FPTruncInst
3617   FPTruncInst *clone_impl() const override;
3618
3619 public:
3620   /// \brief Constructor with insert-before-instruction semantics
3621   FPTruncInst(
3622     Value *S,                           ///< The value to be truncated
3623     Type *Ty,                           ///< The type to truncate to
3624     const Twine &NameStr = "",          ///< A name for the new instruction
3625     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3626   );
3627
3628   /// \brief Constructor with insert-before-instruction semantics
3629   FPTruncInst(
3630     Value *S,                     ///< The value to be truncated
3631     Type *Ty,                     ///< The type to truncate to
3632     const Twine &NameStr,         ///< A name for the new instruction
3633     BasicBlock *InsertAtEnd       ///< The block to insert the instruction into
3634   );
3635
3636   /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
3637   static inline bool classof(const Instruction *I) {
3638     return I->getOpcode() == FPTrunc;
3639   }
3640   static inline bool classof(const Value *V) {
3641     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3642   }
3643 };
3644
3645 //===----------------------------------------------------------------------===//
3646 //                                 FPExtInst Class
3647 //===----------------------------------------------------------------------===//
3648
3649 /// \brief This class represents an extension of floating point types.
3650 class FPExtInst : public CastInst {
3651 protected:
3652   /// \brief Clone an identical FPExtInst
3653   FPExtInst *clone_impl() const override;
3654
3655 public:
3656   /// \brief Constructor with insert-before-instruction semantics
3657   FPExtInst(
3658     Value *S,                           ///< The value to be extended
3659     Type *Ty,                           ///< The type to extend to
3660     const Twine &NameStr = "",          ///< A name for the new instruction
3661     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3662   );
3663
3664   /// \brief Constructor with insert-at-end-of-block semantics
3665   FPExtInst(
3666     Value *S,                     ///< The value to be extended
3667     Type *Ty,                     ///< The type to extend to
3668     const Twine &NameStr,         ///< A name for the new instruction
3669     BasicBlock *InsertAtEnd       ///< The block to insert the instruction into
3670   );
3671
3672   /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
3673   static inline bool classof(const Instruction *I) {
3674     return I->getOpcode() == FPExt;
3675   }
3676   static inline bool classof(const Value *V) {
3677     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3678   }
3679 };
3680
3681 //===----------------------------------------------------------------------===//
3682 //                                 UIToFPInst Class
3683 //===----------------------------------------------------------------------===//
3684
3685 /// \brief This class represents a cast unsigned integer to floating point.
3686 class UIToFPInst : public CastInst {
3687 protected:
3688   /// \brief Clone an identical UIToFPInst
3689   UIToFPInst *clone_impl() const override;
3690
3691 public:
3692   /// \brief Constructor with insert-before-instruction semantics
3693   UIToFPInst(
3694     Value *S,                           ///< The value to be converted
3695     Type *Ty,                           ///< The type to convert to
3696     const Twine &NameStr = "",          ///< A name for the new instruction
3697     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3698   );
3699
3700   /// \brief Constructor with insert-at-end-of-block semantics
3701   UIToFPInst(
3702     Value *S,                     ///< The value to be converted
3703     Type *Ty,                     ///< The type to convert to
3704     const Twine &NameStr,         ///< A name for the new instruction
3705     BasicBlock *InsertAtEnd       ///< The block to insert the instruction into
3706   );
3707
3708   /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
3709   static inline bool classof(const Instruction *I) {
3710     return I->getOpcode() == UIToFP;
3711   }
3712   static inline bool classof(const Value *V) {
3713     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3714   }
3715 };
3716
3717 //===----------------------------------------------------------------------===//
3718 //                                 SIToFPInst Class
3719 //===----------------------------------------------------------------------===//
3720
3721 /// \brief This class represents a cast from signed integer to floating point.
3722 class SIToFPInst : public CastInst {
3723 protected:
3724   /// \brief Clone an identical SIToFPInst
3725   SIToFPInst *clone_impl() const override;
3726
3727 public:
3728   /// \brief Constructor with insert-before-instruction semantics
3729   SIToFPInst(
3730     Value *S,                           ///< The value to be converted
3731     Type *Ty,                           ///< The type to convert to
3732     const Twine &NameStr = "",          ///< A name for the new instruction
3733     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3734   );
3735
3736   /// \brief Constructor with insert-at-end-of-block semantics
3737   SIToFPInst(
3738     Value *S,                     ///< The value to be converted
3739     Type *Ty,                     ///< The type to convert to
3740     const Twine &NameStr,         ///< A name for the new instruction
3741     BasicBlock *InsertAtEnd       ///< The block to insert the instruction into
3742   );
3743
3744   /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
3745   static inline bool classof(const Instruction *I) {
3746     return I->getOpcode() == SIToFP;
3747   }
3748   static inline bool classof(const Value *V) {
3749     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3750   }
3751 };
3752
3753 //===----------------------------------------------------------------------===//
3754 //                                 FPToUIInst Class
3755 //===----------------------------------------------------------------------===//
3756
3757 /// \brief This class represents a cast from floating point to unsigned integer
3758 class FPToUIInst  : public CastInst {
3759 protected:
3760   /// \brief Clone an identical FPToUIInst
3761   FPToUIInst *clone_impl() const override;
3762
3763 public:
3764   /// \brief Constructor with insert-before-instruction semantics
3765   FPToUIInst(
3766     Value *S,                           ///< The value to be converted
3767     Type *Ty,                           ///< The type to convert to
3768     const Twine &NameStr = "",          ///< A name for the new instruction
3769     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3770   );
3771
3772   /// \brief Constructor with insert-at-end-of-block semantics
3773   FPToUIInst(
3774     Value *S,                     ///< The value to be converted
3775     Type *Ty,                     ///< The type to convert to
3776     const Twine &NameStr,         ///< A name for the new instruction
3777     BasicBlock *InsertAtEnd       ///< Where to insert the new instruction
3778   );
3779
3780   /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
3781   static inline bool classof(const Instruction *I) {
3782     return I->getOpcode() == FPToUI;
3783   }
3784   static inline bool classof(const Value *V) {
3785     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3786   }
3787 };
3788
3789 //===----------------------------------------------------------------------===//
3790 //                                 FPToSIInst Class
3791 //===----------------------------------------------------------------------===//
3792
3793 /// \brief This class represents a cast from floating point to signed integer.
3794 class FPToSIInst  : public CastInst {
3795 protected:
3796   /// \brief Clone an identical FPToSIInst
3797   FPToSIInst *clone_impl() const override;
3798
3799 public:
3800   /// \brief Constructor with insert-before-instruction semantics
3801   FPToSIInst(
3802     Value *S,                           ///< The value to be converted
3803     Type *Ty,                           ///< The type to convert to
3804     const Twine &NameStr = "",          ///< A name for the new instruction
3805     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3806   );
3807
3808   /// \brief Constructor with insert-at-end-of-block semantics
3809   FPToSIInst(
3810     Value *S,                     ///< The value to be converted
3811     Type *Ty,                     ///< The type to convert to
3812     const Twine &NameStr,         ///< A name for the new instruction
3813     BasicBlock *InsertAtEnd       ///< The block to insert the instruction into
3814   );
3815
3816   /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
3817   static inline bool classof(const Instruction *I) {
3818     return I->getOpcode() == FPToSI;
3819   }
3820   static inline bool classof(const Value *V) {
3821     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3822   }
3823 };
3824
3825 //===----------------------------------------------------------------------===//
3826 //                                 IntToPtrInst Class
3827 //===----------------------------------------------------------------------===//
3828
3829 /// \brief This class represents a cast from an integer to a pointer.
3830 class IntToPtrInst : public CastInst {
3831 public:
3832   /// \brief Constructor with insert-before-instruction semantics
3833   IntToPtrInst(
3834     Value *S,                           ///< The value to be converted
3835     Type *Ty,                           ///< The type to convert to
3836     const Twine &NameStr = "",          ///< A name for the new instruction
3837     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3838   );
3839
3840   /// \brief Constructor with insert-at-end-of-block semantics
3841   IntToPtrInst(
3842     Value *S,                     ///< The value to be converted
3843     Type *Ty,                     ///< The type to convert to
3844     const Twine &NameStr,         ///< A name for the new instruction
3845     BasicBlock *InsertAtEnd       ///< The block to insert the instruction into
3846   );
3847
3848   /// \brief Clone an identical IntToPtrInst
3849   IntToPtrInst *clone_impl() const override;
3850
3851   /// \brief Returns the address space of this instruction's pointer type.
3852   unsigned getAddressSpace() const {
3853     return getType()->getPointerAddressSpace();
3854   }
3855
3856   // Methods for support type inquiry through isa, cast, and dyn_cast:
3857   static inline bool classof(const Instruction *I) {
3858     return I->getOpcode() == IntToPtr;
3859   }
3860   static inline bool classof(const Value *V) {
3861     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3862   }
3863 };
3864
3865 //===----------------------------------------------------------------------===//
3866 //                                 PtrToIntInst Class
3867 //===----------------------------------------------------------------------===//
3868
3869 /// \brief This class represents a cast from a pointer to an integer
3870 class PtrToIntInst : public CastInst {
3871 protected:
3872   /// \brief Clone an identical PtrToIntInst
3873   PtrToIntInst *clone_impl() const override;
3874
3875 public:
3876   /// \brief Constructor with insert-before-instruction semantics
3877   PtrToIntInst(
3878     Value *S,                           ///< The value to be converted
3879     Type *Ty,                           ///< The type to convert to
3880     const Twine &NameStr = "",          ///< A name for the new instruction
3881     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3882   );
3883
3884   /// \brief Constructor with insert-at-end-of-block semantics
3885   PtrToIntInst(
3886     Value *S,                     ///< The value to be converted
3887     Type *Ty,                     ///< The type to convert to
3888     const Twine &NameStr,         ///< A name for the new instruction
3889     BasicBlock *InsertAtEnd       ///< The block to insert the instruction into
3890   );
3891
3892   /// \brief Gets the pointer operand.
3893   Value *getPointerOperand() { return getOperand(0); }
3894   /// \brief Gets the pointer operand.
3895   const Value *getPointerOperand() const { return getOperand(0); }
3896   /// \brief Gets the operand index of the pointer operand.
3897   static unsigned getPointerOperandIndex() { return 0U; }
3898
3899   /// \brief Returns the address space of the pointer operand.
3900   unsigned getPointerAddressSpace() const {
3901     return getPointerOperand()->getType()->getPointerAddressSpace();
3902   }
3903
3904   // Methods for support type inquiry through isa, cast, and dyn_cast:
3905   static inline bool classof(const Instruction *I) {
3906     return I->getOpcode() == PtrToInt;
3907   }
3908   static inline bool classof(const Value *V) {
3909     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3910   }
3911 };
3912
3913 //===----------------------------------------------------------------------===//
3914 //                             BitCastInst Class
3915 //===----------------------------------------------------------------------===//
3916
3917 /// \brief This class represents a no-op cast from one type to another.
3918 class BitCastInst : public CastInst {
3919 protected:
3920   /// \brief Clone an identical BitCastInst
3921   BitCastInst *clone_impl() const override;
3922
3923 public:
3924   /// \brief Constructor with insert-before-instruction semantics
3925   BitCastInst(
3926     Value *S,                           ///< The value to be casted
3927     Type *Ty,                           ///< The type to casted to
3928     const Twine &NameStr = "",          ///< A name for the new instruction
3929     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3930   );
3931
3932   /// \brief Constructor with insert-at-end-of-block semantics
3933   BitCastInst(
3934     Value *S,                     ///< The value to be casted
3935     Type *Ty,                     ///< The type to casted to
3936     const Twine &NameStr,         ///< A name for the new instruction
3937     BasicBlock *InsertAtEnd       ///< The block to insert the instruction into
3938   );
3939
3940   // Methods for support type inquiry through isa, cast, and dyn_cast:
3941   static inline bool classof(const Instruction *I) {
3942     return I->getOpcode() == BitCast;
3943   }
3944   static inline bool classof(const Value *V) {
3945     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3946   }
3947 };
3948
3949 //===----------------------------------------------------------------------===//
3950 //                          AddrSpaceCastInst Class
3951 //===----------------------------------------------------------------------===//
3952
3953 /// \brief This class represents a conversion between pointers from
3954 /// one address space to another.
3955 class AddrSpaceCastInst : public CastInst {
3956 protected:
3957   /// \brief Clone an identical AddrSpaceCastInst
3958   AddrSpaceCastInst *clone_impl() const override;
3959
3960 public:
3961   /// \brief Constructor with insert-before-instruction semantics
3962   AddrSpaceCastInst(
3963     Value *S,                           ///< The value to be casted
3964     Type *Ty,                           ///< The type to casted to
3965     const Twine &NameStr = "",          ///< A name for the new instruction
3966     Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
3967   );
3968
3969   /// \brief Constructor with insert-at-end-of-block semantics
3970   AddrSpaceCastInst(
3971     Value *S,                     ///< The value to be casted
3972     Type *Ty,                     ///< The type to casted to
3973     const Twine &NameStr,         ///< A name for the new instruction
3974     BasicBlock *InsertAtEnd       ///< The block to insert the instruction into
3975   );
3976
3977   // Methods for support type inquiry through isa, cast, and dyn_cast:
3978   static inline bool classof(const Instruction *I) {
3979     return I->getOpcode() == AddrSpaceCast;
3980   }
3981   static inline bool classof(const Value *V) {
3982     return isa<Instruction>(V) && classof(cast<Instruction>(V));
3983   }
3984 };
3985
3986 } // End llvm namespace
3987
3988 #endif