LLVM 22.0.0git
InstrTypes.h
Go to the documentation of this file.
1//===- llvm/InstrTypes.h - Important Instruction subclasses -----*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines various meta classes of instructions that exist in the VM
10// representation. Specific concrete subclasses of these may be found in the
11// i*.h files...
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_IR_INSTRTYPES_H
16#define LLVM_IR_INSTRTYPES_H
17
18#include "llvm/ADT/ArrayRef.h"
19#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/Sequence.h"
21#include "llvm/ADT/StringMap.h"
22#include "llvm/ADT/Twine.h"
24#include "llvm/IR/Attributes.h"
25#include "llvm/IR/CallingConv.h"
27#include "llvm/IR/FMF.h"
28#include "llvm/IR/Function.h"
29#include "llvm/IR/Instruction.h"
30#include "llvm/IR/LLVMContext.h"
32#include "llvm/IR/User.h"
34#include <algorithm>
35#include <cassert>
36#include <cstddef>
37#include <cstdint>
38#include <iterator>
39#include <optional>
40#include <string>
41#include <vector>
42
43namespace llvm {
44
45class StringRef;
46class Type;
47class Value;
48class ConstantRange;
49
50namespace Intrinsic {
51typedef unsigned ID;
52}
53
54//===----------------------------------------------------------------------===//
55// UnaryInstruction Class
56//===----------------------------------------------------------------------===//
57
59 constexpr static IntrusiveOperandsAllocMarker AllocMarker{1};
60
61protected:
62 UnaryInstruction(Type *Ty, unsigned iType, Value *V,
63 InsertPosition InsertBefore = nullptr)
64 : Instruction(Ty, iType, AllocMarker, InsertBefore) {
65 Op<0>() = V;
66 }
67
68public:
69 // allocate space for exactly one operand
70 void *operator new(size_t S) { return User::operator new(S, AllocMarker); }
71 void operator delete(void *Ptr) { User::operator delete(Ptr); }
72
73 /// Transparently provide more efficient getOperand methods.
75
76 // Methods for support type inquiry through isa, cast, and dyn_cast:
77 static bool classof(const Instruction *I) {
78 return I->isUnaryOp() || I->getOpcode() == Instruction::Alloca ||
79 I->getOpcode() == Instruction::Load ||
80 I->getOpcode() == Instruction::VAArg ||
81 I->getOpcode() == Instruction::ExtractValue ||
82 I->getOpcode() == Instruction::Freeze ||
83 (I->getOpcode() >= CastOpsBegin && I->getOpcode() < CastOpsEnd);
84 }
85 static bool classof(const Value *V) {
87 }
88};
89
90template <>
92 public FixedNumOperandTraits<UnaryInstruction, 1> {
93};
94
96
97//===----------------------------------------------------------------------===//
98// UnaryOperator Class
99//===----------------------------------------------------------------------===//
100
102 void AssertOK();
103
104protected:
105 LLVM_ABI UnaryOperator(UnaryOps iType, Value *S, Type *Ty, const Twine &Name,
106 InsertPosition InsertBefore);
107
108 // Note: Instruction needs to be a friend here to call cloneImpl.
109 friend class Instruction;
110
112
113public:
114 /// Construct a unary instruction, given the opcode and an operand.
115 /// Optionally (if InstBefore is specified) insert the instruction
116 /// into a BasicBlock right before the specified instruction. The specified
117 /// Instruction is allowed to be a dereferenced end iterator.
118 ///
120 const Twine &Name = Twine(),
121 InsertPosition InsertBefore = nullptr);
122
123 /// These methods just forward to Create, and are useful when you
124 /// statically know what type of instruction you're going to create. These
125 /// helpers just save some typing.
126#define HANDLE_UNARY_INST(N, OPC, CLASS) \
127 static UnaryOperator *Create##OPC(Value *V, const Twine &Name = "") { \
128 return Create(Instruction::OPC, V, Name); \
129 }
130#include "llvm/IR/Instruction.def"
131#define HANDLE_UNARY_INST(N, OPC, CLASS) \
132 static UnaryOperator *Create##OPC(Value *V, const Twine &Name, \
133 InsertPosition InsertBefore = nullptr) { \
134 return Create(Instruction::OPC, V, Name, InsertBefore); \
135 }
136#include "llvm/IR/Instruction.def"
137
138 static UnaryOperator *
140 const Twine &Name = "",
141 InsertPosition InsertBefore = nullptr) {
142 UnaryOperator *UO = Create(Opc, V, Name, InsertBefore);
143 UO->copyIRFlags(CopyO);
144 return UO;
145 }
146
148 const Twine &Name = "",
149 InsertPosition InsertBefore = nullptr) {
150 return CreateWithCopiedFlags(Instruction::FNeg, Op, FMFSource, Name,
151 InsertBefore);
152 }
153
155 return static_cast<UnaryOps>(Instruction::getOpcode());
156 }
157
158 // Methods for support type inquiry through isa, cast, and dyn_cast:
159 static bool classof(const Instruction *I) {
160 return I->isUnaryOp();
161 }
162 static bool classof(const Value *V) {
164 }
165};
166
167//===----------------------------------------------------------------------===//
168// BinaryOperator Class
169//===----------------------------------------------------------------------===//
170
172 constexpr static IntrusiveOperandsAllocMarker AllocMarker{2};
173
174 void AssertOK();
175
176protected:
178 const Twine &Name, InsertPosition InsertBefore);
179
180 // Note: Instruction needs to be a friend here to call cloneImpl.
181 friend class Instruction;
182
184
185public:
186 // allocate space for exactly two operands
187 void *operator new(size_t S) { return User::operator new(S, AllocMarker); }
188 void operator delete(void *Ptr) { User::operator delete(Ptr); }
189
190 /// Transparently provide more efficient getOperand methods.
192
193 /// Construct a binary instruction, given the opcode and the two
194 /// operands. Optionally (if InstBefore is specified) insert the instruction
195 /// into a BasicBlock right before the specified instruction. The specified
196 /// Instruction is allowed to be a dereferenced end iterator.
197 ///
199 const Twine &Name = Twine(),
200 InsertPosition InsertBefore = nullptr);
201
202 /// These methods just forward to Create, and are useful when you
203 /// statically know what type of instruction you're going to create. These
204 /// helpers just save some typing.
205#define HANDLE_BINARY_INST(N, OPC, CLASS) \
206 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
207 const Twine &Name = "") { \
208 return Create(Instruction::OPC, V1, V2, Name); \
209 }
210#include "llvm/IR/Instruction.def"
211#define HANDLE_BINARY_INST(N, OPC, CLASS) \
212 static BinaryOperator *Create##OPC(Value *V1, Value *V2, const Twine &Name, \
213 InsertPosition InsertBefore) { \
214 return Create(Instruction::OPC, V1, V2, Name, InsertBefore); \
215 }
216#include "llvm/IR/Instruction.def"
217
218 static BinaryOperator *
220 const Twine &Name = "",
221 InsertPosition InsertBefore = nullptr) {
222 BinaryOperator *BO = Create(Opc, V1, V2, Name, InsertBefore);
223 BO->copyIRFlags(CopyO);
224 return BO;
225 }
226
228 FastMathFlags FMF,
229 const Twine &Name = "",
230 InsertPosition InsertBefore = nullptr) {
231 BinaryOperator *BO = Create(Opc, V1, V2, Name, InsertBefore);
232 BO->setFastMathFlags(FMF);
233 return BO;
234 }
235
237 const Twine &Name = "") {
238 return CreateWithFMF(Instruction::FAdd, V1, V2, FMF, Name);
239 }
241 const Twine &Name = "") {
242 return CreateWithFMF(Instruction::FSub, V1, V2, FMF, Name);
243 }
245 const Twine &Name = "") {
246 return CreateWithFMF(Instruction::FMul, V1, V2, FMF, Name);
247 }
249 const Twine &Name = "") {
250 return CreateWithFMF(Instruction::FDiv, V1, V2, FMF, Name);
251 }
252
255 const Twine &Name = "") {
256 return CreateWithCopiedFlags(Instruction::FAdd, V1, V2, FMFSource, Name);
257 }
260 const Twine &Name = "") {
261 return CreateWithCopiedFlags(Instruction::FSub, V1, V2, FMFSource, Name);
262 }
265 const Twine &Name = "") {
266 return CreateWithCopiedFlags(Instruction::FMul, V1, V2, FMFSource, Name);
267 }
270 const Twine &Name = "") {
271 return CreateWithCopiedFlags(Instruction::FDiv, V1, V2, FMFSource, Name);
272 }
275 const Twine &Name = "") {
276 return CreateWithCopiedFlags(Instruction::FRem, V1, V2, FMFSource, Name);
277 }
278
280 const Twine &Name = "") {
281 BinaryOperator *BO = Create(Opc, V1, V2, Name);
282 BO->setHasNoSignedWrap(true);
283 return BO;
284 }
285
287 const Twine &Name,
288 InsertPosition InsertBefore) {
289 BinaryOperator *BO = Create(Opc, V1, V2, Name, InsertBefore);
290 BO->setHasNoSignedWrap(true);
291 return BO;
292 }
293
295 const Twine &Name = "") {
296 BinaryOperator *BO = Create(Opc, V1, V2, Name);
297 BO->setHasNoUnsignedWrap(true);
298 return BO;
299 }
300
302 const Twine &Name,
303 InsertPosition InsertBefore) {
304 BinaryOperator *BO = Create(Opc, V1, V2, Name, InsertBefore);
305 BO->setHasNoUnsignedWrap(true);
306 return BO;
307 }
308
310 const Twine &Name = "") {
311 BinaryOperator *BO = Create(Opc, V1, V2, Name);
312 BO->setIsExact(true);
313 return BO;
314 }
315
317 const Twine &Name,
318 InsertPosition InsertBefore) {
319 BinaryOperator *BO = Create(Opc, V1, V2, Name, InsertBefore);
320 BO->setIsExact(true);
321 return BO;
322 }
323
324 static inline BinaryOperator *
325 CreateDisjoint(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name = "");
326 static inline BinaryOperator *CreateDisjoint(BinaryOps Opc, Value *V1,
327 Value *V2, const Twine &Name,
328 InsertPosition InsertBefore);
329
330#define DEFINE_HELPERS(OPC, NUWNSWEXACT) \
331 static BinaryOperator *Create##NUWNSWEXACT##OPC(Value *V1, Value *V2, \
332 const Twine &Name = "") { \
333 return Create##NUWNSWEXACT(Instruction::OPC, V1, V2, Name); \
334 } \
335 static BinaryOperator *Create##NUWNSWEXACT##OPC( \
336 Value *V1, Value *V2, const Twine &Name, \
337 InsertPosition InsertBefore = nullptr) { \
338 return Create##NUWNSWEXACT(Instruction::OPC, V1, V2, Name, InsertBefore); \
339 }
340
341 DEFINE_HELPERS(Add, NSW) // CreateNSWAdd
342 DEFINE_HELPERS(Add, NUW) // CreateNUWAdd
343 DEFINE_HELPERS(Sub, NSW) // CreateNSWSub
344 DEFINE_HELPERS(Sub, NUW) // CreateNUWSub
345 DEFINE_HELPERS(Mul, NSW) // CreateNSWMul
346 DEFINE_HELPERS(Mul, NUW) // CreateNUWMul
347 DEFINE_HELPERS(Shl, NSW) // CreateNSWShl
348 DEFINE_HELPERS(Shl, NUW) // CreateNUWShl
349
350 DEFINE_HELPERS(SDiv, Exact) // CreateExactSDiv
351 DEFINE_HELPERS(UDiv, Exact) // CreateExactUDiv
352 DEFINE_HELPERS(AShr, Exact) // CreateExactAShr
353 DEFINE_HELPERS(LShr, Exact) // CreateExactLShr
354
355 DEFINE_HELPERS(Or, Disjoint) // CreateDisjointOr
356
357#undef DEFINE_HELPERS
358
359 /// Helper functions to construct and inspect unary operations (NEG and NOT)
360 /// via binary operators SUB and XOR:
361 ///
362 /// Create the NEG and NOT instructions out of SUB and XOR instructions.
363 ///
364 LLVM_ABI static BinaryOperator *
365 CreateNeg(Value *Op, const Twine &Name = "",
366 InsertPosition InsertBefore = nullptr);
367 LLVM_ABI static BinaryOperator *
368 CreateNSWNeg(Value *Op, const Twine &Name = "",
369 InsertPosition InsertBefore = nullptr);
370 LLVM_ABI static BinaryOperator *
371 CreateNot(Value *Op, const Twine &Name = "",
372 InsertPosition InsertBefore = nullptr);
373
375 return static_cast<BinaryOps>(Instruction::getOpcode());
376 }
377
378 /// Exchange the two operands to this instruction.
379 /// This instruction is safe to use on any binary instruction and
380 /// does not modify the semantics of the instruction. If the instruction
381 /// cannot be reversed (ie, it's a Div), then return true.
382 ///
383 LLVM_ABI bool swapOperands();
384
385 // Methods for support type inquiry through isa, cast, and dyn_cast:
386 static bool classof(const Instruction *I) {
387 return I->isBinaryOp();
388 }
389 static bool classof(const Value *V) {
391 }
392};
393
394template <>
396 public FixedNumOperandTraits<BinaryOperator, 2> {
397};
398
400
401/// An or instruction, which can be marked as "disjoint", indicating that the
402/// inputs don't have a 1 in the same bit position. Meaning this instruction
403/// can also be treated as an add.
405public:
406 enum { IsDisjoint = (1 << 0) };
407
412
413 bool isDisjoint() const { return SubclassOptionalData & IsDisjoint; }
414
415 static bool classof(const Instruction *I) {
416 return I->getOpcode() == Instruction::Or;
417 }
418
419 static bool classof(const Value *V) {
421 }
422};
423
425 Value *V2, const Twine &Name) {
426 BinaryOperator *BO = Create(Opc, V1, V2, Name);
427 cast<PossiblyDisjointInst>(BO)->setIsDisjoint(true);
428 return BO;
429}
431 Value *V2, const Twine &Name,
432 InsertPosition InsertBefore) {
433 BinaryOperator *BO = Create(Opc, V1, V2, Name, InsertBefore);
434 cast<PossiblyDisjointInst>(BO)->setIsDisjoint(true);
435 return BO;
436}
437
438//===----------------------------------------------------------------------===//
439// CastInst Class
440//===----------------------------------------------------------------------===//
441
442/// This is the base class for all instructions that perform data
443/// casts. It is simply provided so that instruction category testing
444/// can be performed with code like:
445///
446/// if (isa<CastInst>(Instr)) { ... }
447/// Base class of casting instructions.
449protected:
450 /// Constructor with insert-before-instruction semantics for subclasses
451 CastInst(Type *Ty, unsigned iType, Value *S, const Twine &NameStr = "",
452 InsertPosition InsertBefore = nullptr)
453 : UnaryInstruction(Ty, iType, S, InsertBefore) {
454 setName(NameStr);
455 }
456
457public:
458 /// Provides a way to construct any of the CastInst subclasses using an
459 /// opcode instead of the subclass's constructor. The opcode must be in the
460 /// CastOps category (Instruction::isCast(opcode) returns true). This
461 /// constructor has insert-before-instruction semantics to automatically
462 /// insert the new CastInst before InsertBefore (if it is non-null).
463 /// Construct any of the CastInst subclasses
464 LLVM_ABI static CastInst *Create(
465 Instruction::CastOps, ///< The opcode of the cast instruction
466 Value *S, ///< The value to be casted (operand 0)
467 Type *Ty, ///< The type to which cast should be made
468 const Twine &Name = "", ///< Name for the instruction
469 InsertPosition InsertBefore = nullptr ///< Place to insert the instruction
470 );
471
472 /// Create a ZExt or BitCast cast instruction
474 Value *S, ///< The value to be casted (operand 0)
475 Type *Ty, ///< The type to which cast should be made
476 const Twine &Name = "", ///< Name for the instruction
477 InsertPosition InsertBefore = nullptr ///< Place to insert the instruction
478 );
479
480 /// Create a SExt or BitCast cast instruction
482 Value *S, ///< The value to be casted (operand 0)
483 Type *Ty, ///< The type to which cast should be made
484 const Twine &Name = "", ///< Name for the instruction
485 InsertPosition InsertBefore = nullptr ///< Place to insert the instruction
486 );
487
488 /// Create a BitCast, AddrSpaceCast or a PtrToInt cast instruction.
490 Value *S, ///< The pointer value to be casted (operand 0)
491 Type *Ty, ///< The type to which cast should be made
492 const Twine &Name = "", ///< Name for the instruction
493 InsertPosition InsertBefore = nullptr ///< Place to insert the instruction
494 );
495
496 /// Create a BitCast or an AddrSpaceCast cast instruction.
498 Value *S, ///< The pointer value to be casted (operand 0)
499 Type *Ty, ///< The type to which cast should be made
500 const Twine &Name = "", ///< Name for the instruction
501 InsertPosition InsertBefore = nullptr ///< Place to insert the instruction
502 );
503
504 /// Create a BitCast, a PtrToInt, or an IntToPTr cast instruction.
505 ///
506 /// If the value is a pointer type and the destination an integer type,
507 /// creates a PtrToInt cast. If the value is an integer type and the
508 /// destination a pointer type, creates an IntToPtr cast. Otherwise, creates
509 /// a bitcast.
511 Value *S, ///< The pointer value to be casted (operand 0)
512 Type *Ty, ///< The type to which cast should be made
513 const Twine &Name = "", ///< Name for the instruction
514 InsertPosition InsertBefore = nullptr ///< Place to insert the instruction
515 );
516
517 /// Create a ZExt, BitCast, or Trunc for int -> int casts.
519 Value *S, ///< The pointer value to be casted (operand 0)
520 Type *Ty, ///< The type to which cast should be made
521 bool isSigned, ///< Whether to regard S as signed or not
522 const Twine &Name = "", ///< Name for the instruction
523 InsertPosition InsertBefore = nullptr ///< Place to insert the instruction
524 );
525
526 /// Create an FPExt, BitCast, or FPTrunc for fp -> fp casts
528 Value *S, ///< The floating point value to be casted
529 Type *Ty, ///< The floating point type to cast to
530 const Twine &Name = "", ///< Name for the instruction
531 InsertPosition InsertBefore = nullptr ///< Place to insert the instruction
532 );
533
534 /// Create a Trunc or BitCast cast instruction
536 Value *S, ///< The value to be casted (operand 0)
537 Type *Ty, ///< The type to which cast should be made
538 const Twine &Name = "", ///< Name for the instruction
539 InsertPosition InsertBefore = nullptr ///< Place to insert the instruction
540 );
541
542 /// Check whether a bitcast between these types is valid
543 LLVM_ABI static bool
544 isBitCastable(Type *SrcTy, ///< The Type from which the value should be cast.
545 Type *DestTy ///< The Type to which the value should be cast.
546 );
547
548 /// Check whether a bitcast, inttoptr, or ptrtoint cast between these
549 /// types is valid and a no-op.
550 ///
551 /// This ensures that any pointer<->integer cast has enough bits in the
552 /// integer and any other cast is a bitcast.
554 Type *SrcTy, ///< The Type from which the value should be cast.
555 Type *DestTy, ///< The Type to which the value should be cast.
556 const DataLayout &DL);
557
558 /// Returns the opcode necessary to cast Val into Ty using usual casting
559 /// rules.
560 /// Infer the opcode for cast operand and type
562 getCastOpcode(const Value *Val, ///< The value to cast
563 bool SrcIsSigned, ///< Whether to treat the source as signed
564 Type *Ty, ///< The Type to which the value should be casted
565 bool DstIsSigned ///< Whether to treate the dest. as signed
566 );
567
568 /// There are several places where we need to know if a cast instruction
569 /// only deals with integer source and destination types. To simplify that
570 /// logic, this method is provided.
571 /// @returns true iff the cast has only integral typed operand and dest type.
572 /// Determine if this is an integer-only cast.
573 LLVM_ABI bool isIntegerCast() const;
574
575 /// A no-op cast is one that can be effected without changing any bits.
576 /// It implies that the source and destination types are the same size. The
577 /// DataLayout argument is to determine the pointer size when examining casts
578 /// involving Integer and Pointer types. They are no-op casts if the integer
579 /// is the same size as the pointer. However, pointer size varies with
580 /// platform. Note that a precondition of this method is that the cast is
581 /// legal - i.e. the instruction formed with these operands would verify.
582 LLVM_ABI static bool
583 isNoopCast(Instruction::CastOps Opcode, ///< Opcode of cast
584 Type *SrcTy, ///< SrcTy of cast
585 Type *DstTy, ///< DstTy of cast
586 const DataLayout &DL ///< DataLayout to get the Int Ptr type from.
587 );
588
589 /// Determine if this cast is a no-op cast.
590 ///
591 /// \param DL is the DataLayout to determine pointer size.
592 LLVM_ABI bool isNoopCast(const DataLayout &DL) const;
593
594 /// Determine how a pair of casts can be eliminated, if they can be at all.
595 /// This is a helper function for both CastInst and ConstantExpr.
596 /// @returns 0 if the CastInst pair can't be eliminated, otherwise
597 /// returns Instruction::CastOps value for a cast that can replace
598 /// the pair, casting SrcTy to DstTy.
599 /// Determine if a cast pair is eliminable
600 LLVM_ABI static unsigned isEliminableCastPair(
601 Instruction::CastOps firstOpcode, ///< Opcode of first cast
602 Instruction::CastOps secondOpcode, ///< Opcode of second cast
603 Type *SrcTy, ///< SrcTy of 1st cast
604 Type *MidTy, ///< DstTy of 1st cast & SrcTy of 2nd cast
605 Type *DstTy, ///< DstTy of 2nd cast
606 const DataLayout *DL ///< Optional data layout
607 );
608
609 /// Return the opcode of this CastInst
613
614 /// Return the source type, as a convenience
615 Type* getSrcTy() const { return getOperand(0)->getType(); }
616 /// Return the destination type, as a convenience
617 Type* getDestTy() const { return getType(); }
618
619 /// This method can be used to determine if a cast from SrcTy to DstTy using
620 /// Opcode op is valid or not.
621 /// @returns true iff the proposed cast is valid.
622 /// Determine if a cast is valid without creating one.
623 LLVM_ABI static bool castIsValid(Instruction::CastOps op, Type *SrcTy,
624 Type *DstTy);
625 static bool castIsValid(Instruction::CastOps op, Value *S, Type *DstTy) {
626 return castIsValid(op, S->getType(), DstTy);
627 }
628
629 /// Methods for support type inquiry through isa, cast, and dyn_cast:
630 static bool classof(const Instruction *I) {
631 return I->isCast();
632 }
633 static bool classof(const Value *V) {
635 }
636};
637
638/// Instruction that can have a nneg flag (zext/uitofp).
640public:
641 enum { NonNeg = (1 << 0) };
642
643 static bool classof(const Instruction *I) {
644 switch (I->getOpcode()) {
645 case Instruction::ZExt:
646 case Instruction::UIToFP:
647 return true;
648 default:
649 return false;
650 }
651 }
652
653 static bool classof(const Value *V) {
655 }
656};
657
658//===----------------------------------------------------------------------===//
659// CmpInst Class
660//===----------------------------------------------------------------------===//
661
662/// This class is the base class for the comparison instructions.
663/// Abstract base class of comparison instructions.
664class CmpInst : public Instruction {
665 constexpr static IntrusiveOperandsAllocMarker AllocMarker{2};
666
667public:
668 /// This enumeration lists the possible predicates for CmpInst subclasses.
669 /// Values in the range 0-31 are reserved for FCmpInst, while values in the
670 /// range 32-64 are reserved for ICmpInst. This is necessary to ensure the
671 /// predicate values are not overlapping between the classes.
672 ///
673 /// Some passes (e.g. InstCombine) depend on the bit-wise characteristics of
674 /// FCMP_* values. Changing the bit patterns requires a potential change to
675 /// those passes.
676 enum Predicate : unsigned {
677 // Opcode U L G E Intuitive operation
678 FCMP_FALSE = 0, ///< 0 0 0 0 Always false (always folded)
679 FCMP_OEQ = 1, ///< 0 0 0 1 True if ordered and equal
680 FCMP_OGT = 2, ///< 0 0 1 0 True if ordered and greater than
681 FCMP_OGE = 3, ///< 0 0 1 1 True if ordered and greater than or equal
682 FCMP_OLT = 4, ///< 0 1 0 0 True if ordered and less than
683 FCMP_OLE = 5, ///< 0 1 0 1 True if ordered and less than or equal
684 FCMP_ONE = 6, ///< 0 1 1 0 True if ordered and operands are unequal
685 FCMP_ORD = 7, ///< 0 1 1 1 True if ordered (no nans)
686 FCMP_UNO = 8, ///< 1 0 0 0 True if unordered: isnan(X) | isnan(Y)
687 FCMP_UEQ = 9, ///< 1 0 0 1 True if unordered or equal
688 FCMP_UGT = 10, ///< 1 0 1 0 True if unordered or greater than
689 FCMP_UGE = 11, ///< 1 0 1 1 True if unordered, greater than, or equal
690 FCMP_ULT = 12, ///< 1 1 0 0 True if unordered or less than
691 FCMP_ULE = 13, ///< 1 1 0 1 True if unordered, less than, or equal
692 FCMP_UNE = 14, ///< 1 1 1 0 True if unordered or not equal
693 FCMP_TRUE = 15, ///< 1 1 1 1 Always true (always folded)
697 ICMP_EQ = 32, ///< equal
698 ICMP_NE = 33, ///< not equal
699 ICMP_UGT = 34, ///< unsigned greater than
700 ICMP_UGE = 35, ///< unsigned greater or equal
701 ICMP_ULT = 36, ///< unsigned less than
702 ICMP_ULE = 37, ///< unsigned less or equal
703 ICMP_SGT = 38, ///< signed greater than
704 ICMP_SGE = 39, ///< signed greater or equal
705 ICMP_SLT = 40, ///< signed less than
706 ICMP_SLE = 41, ///< signed less or equal
710 };
713
714 /// Returns the sequence of all FCmp predicates.
720
721 /// Returns the sequence of all ICmp predicates.
727
728protected:
730 Value *LHS, Value *RHS, const Twine &Name = "",
731 InsertPosition InsertBefore = nullptr,
732 Instruction *FlagsSource = nullptr);
733
734public:
735 // allocate space for exactly two operands
736 void *operator new(size_t S) { return User::operator new(S, AllocMarker); }
737 void operator delete(void *Ptr) { User::operator delete(Ptr); }
738
739 /// Construct a compare instruction, given the opcode, the predicate and
740 /// the two operands. Optionally (if InstBefore is specified) insert the
741 /// instruction into a BasicBlock right before the specified instruction.
742 /// The specified Instruction is allowed to be a dereferenced end iterator.
743 /// Create a CmpInst
745 Value *S2, const Twine &Name = "",
746 InsertPosition InsertBefore = nullptr);
747
748 /// Construct a compare instruction, given the opcode, the predicate,
749 /// the two operands and the instruction to copy the flags from. Optionally
750 /// (if InstBefore is specified) insert the instruction into a BasicBlock
751 /// right before the specified instruction. The specified Instruction is
752 /// allowed to be a dereferenced end iterator.
753 /// Create a CmpInst
754 LLVM_ABI static CmpInst *
756 const Instruction *FlagsSource, const Twine &Name = "",
757 InsertPosition InsertBefore = nullptr);
758
759 /// Get the opcode casted to the right type
761 return static_cast<OtherOps>(Instruction::getOpcode());
762 }
763
764 /// Return the predicate for this instruction.
766
767 /// Set the predicate for this instruction to the specified value.
769
770 static bool isFPPredicate(Predicate P) {
771 static_assert(FIRST_FCMP_PREDICATE == 0,
772 "FIRST_FCMP_PREDICATE is required to be 0");
773 return P <= LAST_FCMP_PREDICATE;
774 }
775
778 }
779
781
782 bool isFPPredicate() const { return isFPPredicate(getPredicate()); }
783 bool isIntPredicate() const { return isIntPredicate(getPredicate()); }
784
785 /// For example, EQ -> NE, UGT -> ULE, SLT -> SGE,
786 /// OEQ -> UNE, UGT -> OLE, OLT -> UGE, etc.
787 /// @returns the inverse predicate for the instruction's current predicate.
788 /// Return the inverse of the instruction's predicate.
792
793 /// Returns the ordered variant of a floating point compare.
794 ///
795 /// For example, UEQ -> OEQ, ULT -> OLT, OEQ -> OEQ
797 return static_cast<Predicate>(Pred & FCMP_ORD);
798 }
799
803
804 /// Returns the unordered variant of a floating point compare.
805 ///
806 /// For example, OEQ -> UEQ, OLT -> ULT, OEQ -> UEQ
808 return static_cast<Predicate>(Pred | FCMP_UNO);
809 }
810
814
815 /// For example, EQ -> NE, UGT -> ULE, SLT -> SGE,
816 /// OEQ -> UNE, UGT -> OLE, OLT -> UGE, etc.
817 /// @returns the inverse predicate for predicate provided in \p pred.
818 /// Return the inverse of a given predicate
820
821 /// For example, EQ->EQ, SLE->SGE, ULT->UGT,
822 /// OEQ->OEQ, ULE->UGE, OLT->OGT, etc.
823 /// @returns the predicate that would be the result of exchanging the two
824 /// operands of the CmpInst instruction without changing the result
825 /// produced.
826 /// Return the predicate as if the operands were swapped
830
831 /// This is a static version that you can use without an instruction
832 /// available.
833 /// Return the predicate as if the operands were swapped.
835
836 /// This is a static version that you can use without an instruction
837 /// available.
838 /// @returns true if the comparison predicate is strict, false otherwise.
839 LLVM_ABI static bool isStrictPredicate(Predicate predicate);
840
841 /// @returns true if the comparison predicate is strict, false otherwise.
842 /// Determine if this instruction is using an strict comparison predicate.
844
845 /// This is a static version that you can use without an instruction
846 /// available.
847 /// @returns true if the comparison predicate is non-strict, false otherwise.
848 LLVM_ABI static bool isNonStrictPredicate(Predicate predicate);
849
850 /// @returns true if the comparison predicate is non-strict, false otherwise.
851 /// Determine if this instruction is using an non-strict comparison predicate.
852 bool isNonStrictPredicate() const {
854 }
855
856 /// For example, SGE -> SGT, SLE -> SLT, ULE -> ULT, UGE -> UGT.
857 /// Returns the strict version of non-strict comparisons.
861
862 /// This is a static version that you can use without an instruction
863 /// available.
864 /// @returns the strict version of comparison provided in \p pred.
865 /// If \p pred is not a strict comparison predicate, returns \p pred.
866 /// Returns the strict version of non-strict comparisons.
868
869 /// For example, SGT -> SGE, SLT -> SLE, ULT -> ULE, UGT -> UGE.
870 /// Returns the non-strict version of strict comparisons.
874
875 /// This is a static version that you can use without an instruction
876 /// available.
877 /// @returns the non-strict version of comparison provided in \p pred.
878 /// If \p pred is not a strict comparison predicate, returns \p pred.
879 /// Returns the non-strict version of strict comparisons.
881
882 /// This is a static version that you can use without an instruction
883 /// available.
884 /// Return the flipped strictness of predicate
886
887 /// For predicate of kind "is X or equal to 0" returns the predicate "is X".
888 /// For predicate of kind "is X" returns the predicate "is X or equal to 0".
889 /// does not support other kind of predicates.
890 /// @returns the predicate that does not contains is equal to zero if
891 /// it had and vice versa.
892 /// Return the flipped strictness of predicate
896
897 /// Provide more efficient getOperand methods.
899
900 /// This is just a convenience that dispatches to the subclasses.
901 /// Swap the operands and adjust predicate accordingly to retain
902 /// the same comparison.
903 LLVM_ABI void swapOperands();
904
905 /// This is just a convenience that dispatches to the subclasses.
906 /// Determine if this CmpInst is commutative.
907 LLVM_ABI bool isCommutative() const;
908
909 /// Determine if this is an equals/not equals predicate.
910 /// This is a static version that you can use without an instruction
911 /// available.
912 LLVM_ABI static bool isEquality(Predicate pred);
913
914 /// Determine if this is an equals/not equals predicate.
915 bool isEquality() const { return isEquality(getPredicate()); }
916
917 /// Determine if one operand of this compare can always be replaced by the
918 /// other operand, ignoring provenance considerations. If \p Invert, check for
919 /// equivalence with the inverse predicate.
920 LLVM_ABI bool isEquivalence(bool Invert = false) const;
921
922 /// Return true if the predicate is relational (not EQ or NE).
923 static bool isRelational(Predicate P) { return !isEquality(P); }
924
925 /// Return true if the predicate is relational (not EQ or NE).
926 bool isRelational() const { return !isEquality(); }
927
928 /// @returns true if the comparison is signed, false otherwise.
929 /// Determine if this instruction is using a signed comparison.
930 bool isSigned() const {
931 return isSigned(getPredicate());
932 }
933
934 /// @returns true if the comparison is unsigned, false otherwise.
935 /// Determine if this instruction is using an unsigned comparison.
936 bool isUnsigned() const {
937 return isUnsigned(getPredicate());
938 }
939
940 /// This is just a convenience.
941 /// Determine if this is true when both operands are the same.
942 bool isTrueWhenEqual() const {
944 }
945
946 /// This is just a convenience.
947 /// Determine if this is false when both operands are the same.
948 bool isFalseWhenEqual() const {
950 }
951
952 /// @returns true if the predicate is unsigned, false otherwise.
953 /// Determine if the predicate is an unsigned operation.
954 LLVM_ABI static bool isUnsigned(Predicate predicate);
955
956 /// @returns true if the predicate is signed, false otherwise.
957 /// Determine if the predicate is an signed operation.
958 LLVM_ABI static bool isSigned(Predicate predicate);
959
960 /// Determine if the predicate is an ordered operation.
961 LLVM_ABI static bool isOrdered(Predicate predicate);
962
963 /// Determine if the predicate is an unordered operation.
964 LLVM_ABI static bool isUnordered(Predicate predicate);
965
966 /// Determine if the predicate is true when comparing a value with itself.
967 LLVM_ABI static bool isTrueWhenEqual(Predicate predicate);
968
969 /// Determine if the predicate is false when comparing a value with itself.
970 LLVM_ABI static bool isFalseWhenEqual(Predicate predicate);
971
972 /// Methods for support type inquiry through isa, cast, and dyn_cast:
973 static bool classof(const Instruction *I) {
974 return I->getOpcode() == Instruction::ICmp ||
975 I->getOpcode() == Instruction::FCmp;
976 }
977 static bool classof(const Value *V) {
979 }
980
981 /// Create a result type for fcmp/icmp
982 static Type* makeCmpResultType(Type* opnd_type) {
983 if (VectorType* vt = dyn_cast<VectorType>(opnd_type)) {
984 return VectorType::get(Type::getInt1Ty(opnd_type->getContext()),
985 vt->getElementCount());
986 }
987 return Type::getInt1Ty(opnd_type->getContext());
988 }
989
990private:
991 // Shadow Value::setValueSubclassData with a private forwarding method so that
992 // subclasses cannot accidentally use it.
993 void setValueSubclassData(unsigned short D) {
995 }
996};
997
998// FIXME: these are redundant if CmpInst < BinaryOperator
999template <>
1000struct OperandTraits<CmpInst> : public FixedNumOperandTraits<CmpInst, 2> {
1001};
1002
1004
1006
1007/// A lightweight accessor for an operand bundle meant to be passed
1008/// around by value.
1011
1012 OperandBundleUse() = default;
1015
1016 /// Return true if the operand at index \p Idx in this operand bundle
1017 /// has the attribute A.
1018 bool operandHasAttr(unsigned Idx, Attribute::AttrKind A) const {
1020 if (A == Attribute::ReadOnly)
1021 return Inputs[Idx]->getType()->isPointerTy();
1022
1023 // Conservative answer: no operands have any attributes.
1024 return false;
1025 }
1026
1027 /// Return the tag of this operand bundle as a string.
1029 return Tag->getKey();
1030 }
1031
1032 /// Return the tag of this operand bundle as an integer.
1033 ///
1034 /// Operand bundle tags are interned by LLVMContextImpl::getOrInsertBundleTag,
1035 /// and this function returns the unique integer getOrInsertBundleTag
1036 /// associated the tag of this operand bundle to.
1038 return Tag->getValue();
1039 }
1040
1041 /// Return true if this is a "deopt" operand bundle.
1043 return getTagID() == LLVMContext::OB_deopt;
1044 }
1045
1046 /// Return true if this is a "funclet" operand bundle.
1049 }
1050
1051 /// Return true if this is a "cfguardtarget" operand bundle.
1055
1056private:
1057 /// Pointer to an entry in LLVMContextImpl::getOrInsertBundleTag.
1059};
1060
1061/// A container for an operand bundle being viewed as a set of values
1062/// rather than a set of uses.
1063///
1064/// Unlike OperandBundleUse, OperandBundleDefT owns the memory it carries, and
1065/// so it is possible to create and pass around "self-contained" instances of
1066/// OperandBundleDef and ConstOperandBundleDef.
1067template <typename InputTy> class OperandBundleDefT {
1068 std::string Tag;
1069 std::vector<InputTy> Inputs;
1070
1071public:
1072 explicit OperandBundleDefT(std::string Tag, std::vector<InputTy> Inputs)
1073 : Tag(std::move(Tag)), Inputs(std::move(Inputs)) {}
1074 explicit OperandBundleDefT(std::string Tag, ArrayRef<InputTy> Inputs)
1075 : Tag(std::move(Tag)), Inputs(Inputs) {}
1076
1078 Tag = std::string(OBU.getTagName());
1079 llvm::append_range(Inputs, OBU.Inputs);
1080 }
1081
1082 ArrayRef<InputTy> inputs() const { return Inputs; }
1083
1084 using input_iterator = typename std::vector<InputTy>::const_iterator;
1085
1086 size_t input_size() const { return Inputs.size(); }
1087 input_iterator input_begin() const { return Inputs.begin(); }
1088 input_iterator input_end() const { return Inputs.end(); }
1089
1090 StringRef getTag() const { return Tag; }
1091};
1092
1093using OperandBundleDef = OperandBundleDefT<Value *>;
1095
1096//===----------------------------------------------------------------------===//
1097// CallBase Class
1098//===----------------------------------------------------------------------===//
1099
1100/// Base class for all callable instructions (InvokeInst and CallInst)
1101/// Holds everything related to calling a function.
1102///
1103/// All call-like instructions are required to use a common operand layout:
1104/// - Zero or more arguments to the call,
1105/// - Zero or more operand bundles with zero or more operand inputs each
1106/// bundle,
1107/// - Zero or more subclass controlled operands
1108/// - The called function.
1109///
1110/// This allows this base class to easily access the called function and the
1111/// start of the arguments without knowing how many other operands a particular
1112/// subclass requires. Note that accessing the end of the argument list isn't
1113/// as cheap as most other operations on the base class.
1114class CallBase : public Instruction {
1115protected:
1116 // The first two bits are reserved by CallInst for fast retrieval,
1121 static_assert(
1123 "Bitfields must be contiguous");
1124
1125 /// The last operand is the called operand.
1126 static constexpr int CalledOperandOpEndIdx = -1;
1127
1128 AttributeList Attrs; ///< parameter attributes for callable
1130
1131 template <class... ArgsTy>
1132 CallBase(AttributeList const &A, FunctionType *FT, ArgsTy &&... Args)
1133 : Instruction(std::forward<ArgsTy>(Args)...), Attrs(A), FTy(FT) {}
1134
1136
1137 bool hasDescriptor() const { return Value::HasDescriptor; }
1138
1140 switch (getOpcode()) {
1141 case Instruction::Call:
1142 return 0;
1143 case Instruction::Invoke:
1144 return 2;
1145 case Instruction::CallBr:
1147 }
1148 llvm_unreachable("Invalid opcode!");
1149 }
1150
1151 /// Get the number of extra operands for instructions that don't have a fixed
1152 /// number of extra operands.
1154
1155public:
1157
1158 /// Create a clone of \p CB with a different set of operand bundles and
1159 /// insert it before \p InsertPt.
1160 ///
1161 /// The returned call instruction is identical \p CB in every way except that
1162 /// the operand bundles for the new instruction are set to the operand bundles
1163 /// in \p Bundles.
1164 LLVM_ABI static CallBase *Create(CallBase *CB,
1166 InsertPosition InsertPt = nullptr);
1167
1168 /// Create a clone of \p CB with the operand bundle with the tag matching
1169 /// \p Bundle's tag replaced with Bundle, and insert it before \p InsertPt.
1170 ///
1171 /// The returned call instruction is identical \p CI in every way except that
1172 /// the specified operand bundle has been replaced.
1173 LLVM_ABI static CallBase *Create(CallBase *CB, OperandBundleDef Bundle,
1174 InsertPosition InsertPt = nullptr);
1175
1176 /// Create a clone of \p CB with operand bundle \p OB added.
1179 InsertPosition InsertPt = nullptr);
1180
1181 /// Create a clone of \p CB with operand bundle \p ID removed.
1182 LLVM_ABI static CallBase *
1184 InsertPosition InsertPt = nullptr);
1185
1186 /// Return the convergence control token for this call, if it exists.
1189 return Bundle->Inputs[0].get();
1190 }
1191 return nullptr;
1192 }
1193
1194 static bool classof(const Instruction *I) {
1195 return I->getOpcode() == Instruction::Call ||
1196 I->getOpcode() == Instruction::Invoke ||
1197 I->getOpcode() == Instruction::CallBr;
1198 }
1199 static bool classof(const Value *V) {
1201 }
1202
1203 FunctionType *getFunctionType() const { return FTy; }
1204
1206 Value::mutateType(FTy->getReturnType());
1207 this->FTy = FTy;
1208 }
1209
1211
1212 /// data_operands_begin/data_operands_end - Return iterators iterating over
1213 /// the call / invoke argument list and bundle operands. For invokes, this is
1214 /// the set of instruction operands except the invoke target and the two
1215 /// successor blocks; and for calls this is the set of instruction operands
1216 /// except the call target.
1219 return const_cast<CallBase *>(this)->data_operands_begin();
1220 }
1222 // Walk from the end of the operands over the called operand and any
1223 // subclass operands.
1224 return op_end() - getNumSubclassExtraOperands() - 1;
1225 }
1227 return const_cast<CallBase *>(this)->data_operands_end();
1228 }
1235 bool data_operands_empty() const {
1237 }
1238 unsigned data_operands_size() const {
1239 return std::distance(data_operands_begin(), data_operands_end());
1240 }
1241
1242 bool isDataOperand(const Use *U) const {
1243 assert(this == U->getUser() &&
1244 "Only valid to query with a use of this instruction!");
1245 return data_operands_begin() <= U && U < data_operands_end();
1246 }
1248 return isDataOperand(&UI.getUse());
1249 }
1250
1251 /// Given a value use iterator, return the data operand corresponding to it.
1252 /// Iterator must actually correspond to a data operand.
1254 return getDataOperandNo(&UI.getUse());
1255 }
1256
1257 /// Given a use for a data operand, get the data operand number that
1258 /// corresponds to it.
1259 unsigned getDataOperandNo(const Use *U) const {
1260 assert(isDataOperand(U) && "Data operand # out of range!");
1261 return U - data_operands_begin();
1262 }
1263
1264 /// Return the iterator pointing to the beginning of the argument list.
1267 return const_cast<CallBase *>(this)->arg_begin();
1268 }
1269
1270 /// Return the iterator pointing to the end of the argument list.
1272 // From the end of the data operands, walk backwards past the bundle
1273 // operands.
1275 }
1277 return const_cast<CallBase *>(this)->arg_end();
1278 }
1279
1280 /// Iteration adapter for range-for loops.
1287 bool arg_empty() const { return arg_end() == arg_begin(); }
1288 unsigned arg_size() const { return arg_end() - arg_begin(); }
1289
1290 Value *getArgOperand(unsigned i) const {
1291 assert(i < arg_size() && "Out of bounds!");
1292 return getOperand(i);
1293 }
1294
1295 void setArgOperand(unsigned i, Value *v) {
1296 assert(i < arg_size() && "Out of bounds!");
1297 setOperand(i, v);
1298 }
1299
1300 /// Wrappers for getting the \c Use of a call argument.
1301 const Use &getArgOperandUse(unsigned i) const {
1302 assert(i < arg_size() && "Out of bounds!");
1303 return User::getOperandUse(i);
1304 }
1305 Use &getArgOperandUse(unsigned i) {
1306 assert(i < arg_size() && "Out of bounds!");
1307 return User::getOperandUse(i);
1308 }
1309
1310 bool isArgOperand(const Use *U) const {
1311 assert(this == U->getUser() &&
1312 "Only valid to query with a use of this instruction!");
1313 return arg_begin() <= U && U < arg_end();
1314 }
1316 return isArgOperand(&UI.getUse());
1317 }
1318
1319 /// Given a use for a arg operand, get the arg operand number that
1320 /// corresponds to it.
1321 unsigned getArgOperandNo(const Use *U) const {
1322 assert(isArgOperand(U) && "Arg operand # out of range!");
1323 return U - arg_begin();
1324 }
1325
1326 /// Given a value use iterator, return the arg operand number corresponding to
1327 /// it. Iterator must actually correspond to a data operand.
1329 return getArgOperandNo(&UI.getUse());
1330 }
1331
1332 /// Returns true if this CallSite passes the given Value* as an argument to
1333 /// the called function.
1334 bool hasArgument(const Value *V) const {
1335 return llvm::is_contained(args(), V);
1336 }
1337
1339
1342
1343 /// Returns the function called, or null if this is an indirect function
1344 /// invocation or the function signature does not match the call signature, or
1345 /// the call target is an alias.
1348 if (F->getValueType() == getFunctionType())
1349 return F;
1350 return nullptr;
1351 }
1352
1353 /// Return true if the callsite is an indirect call.
1354 LLVM_ABI bool isIndirectCall() const;
1355
1356 /// Determine whether the passed iterator points to the callee operand's Use.
1358 return isCallee(&UI.getUse());
1359 }
1360
1361 /// Determine whether this Use is the callee operand's Use.
1362 bool isCallee(const Use *U) const { return &getCalledOperandUse() == U; }
1363
1364 /// Helper to get the caller (the parent function).
1366 const Function *getCaller() const {
1367 return const_cast<CallBase *>(this)->getCaller();
1368 }
1369
1370 /// Tests if this call site must be tail call optimized. Only a CallInst can
1371 /// be tail call optimized.
1372 LLVM_ABI bool isMustTailCall() const;
1373
1374 /// Tests if this call site is marked as a tail call.
1375 LLVM_ABI bool isTailCall() const;
1376
1377 /// Returns the intrinsic ID of the intrinsic called or
1378 /// Intrinsic::not_intrinsic if the called function is not an intrinsic, or if
1379 /// this is an indirect call.
1381
1383
1384 /// Sets the function called, including updating the function type.
1388
1389 /// Sets the function called, including updating the function type.
1393
1394 /// Sets the function called, including updating to the specified function
1395 /// type.
1397 this->FTy = FTy;
1398 // This function doesn't mutate the return type, only the function
1399 // type. Seems broken, but I'm just gonna stick an assert in for now.
1400 assert(getType() == FTy->getReturnType());
1401 setCalledOperand(Fn);
1402 }
1403
1407
1411
1412 /// Check if this call is an inline asm statement.
1413 bool isInlineAsm() const { return isa<InlineAsm>(getCalledOperand()); }
1414
1415 /// \name Attribute API
1416 ///
1417 /// These methods access and modify attributes on this call (including
1418 /// looking through to the attributes on the called function when necessary).
1419 ///@{
1420
1421 /// Return the attributes for this call.
1422 AttributeList getAttributes() const { return Attrs; }
1423
1424 /// Set the attributes for this call.
1425 void setAttributes(AttributeList A) { Attrs = A; }
1426
1427 /// Return the return attributes for this call.
1429 return getAttributes().getRetAttrs();
1430 }
1431
1432 /// Return the param attributes for this call.
1433 AttributeSet getParamAttributes(unsigned ArgNo) const {
1434 return getAttributes().getParamAttrs(ArgNo);
1435 }
1436
1437 /// Try to intersect the attributes from 'this' CallBase and the
1438 /// 'Other' CallBase. Sets the intersected attributes to 'this' and
1439 /// return true if successful. Doesn't modify 'this' and returns
1440 /// false if unsuccessful.
1442 if (this == Other)
1443 return true;
1444 AttributeList AL = getAttributes();
1445 AttributeList ALOther = Other->getAttributes();
1446 auto Intersected = AL.intersectWith(getContext(), ALOther);
1447 if (!Intersected)
1448 return false;
1449 setAttributes(*Intersected);
1450 return true;
1451 }
1452
1453 /// Determine whether this call has the given attribute. If it does not
1454 /// then determine if the called function has the attribute, but only if
1455 /// the attribute is allowed for the call.
1457 assert(Kind != Attribute::NoBuiltin &&
1458 "Use CallBase::isNoBuiltin() to check for Attribute::NoBuiltin");
1459 return hasFnAttrImpl(Kind);
1460 }
1461
1462 /// Determine whether this call has the given attribute. If it does not
1463 /// then determine if the called function has the attribute, but only if
1464 /// the attribute is allowed for the call.
1465 bool hasFnAttr(StringRef Kind) const { return hasFnAttrImpl(Kind); }
1466
1467 // TODO: remove non-AtIndex versions of these methods.
1468 /// adds the attribute to the list of attributes.
1470 Attrs = Attrs.addAttributeAtIndex(getContext(), i, Kind);
1471 }
1472
1473 /// adds the attribute to the list of attributes.
1474 void addAttributeAtIndex(unsigned i, Attribute Attr) {
1475 Attrs = Attrs.addAttributeAtIndex(getContext(), i, Attr);
1476 }
1477
1478 /// Adds the attribute to the function.
1480 Attrs = Attrs.addFnAttribute(getContext(), Kind);
1481 }
1482
1483 /// Adds the attribute to the function.
1485 Attrs = Attrs.addFnAttribute(getContext(), Attr);
1486 }
1487
1488 /// Adds the attribute to the return value.
1490 Attrs = Attrs.addRetAttribute(getContext(), Kind);
1491 }
1492
1493 /// Adds the attribute to the return value.
1495 Attrs = Attrs.addRetAttribute(getContext(), Attr);
1496 }
1497
1498 /// Adds attributes to the return value.
1499 void addRetAttrs(const AttrBuilder &B) {
1500 Attrs = Attrs.addRetAttributes(getContext(), B);
1501 }
1502
1503 /// Adds the attribute to the indicated argument
1504 void addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) {
1505 assert(ArgNo < arg_size() && "Out of bounds");
1506 Attrs = Attrs.addParamAttribute(getContext(), ArgNo, Kind);
1507 }
1508
1509 /// Adds the attribute to the indicated argument
1510 void addParamAttr(unsigned ArgNo, Attribute Attr) {
1511 assert(ArgNo < arg_size() && "Out of bounds");
1512 Attrs = Attrs.addParamAttribute(getContext(), ArgNo, Attr);
1513 }
1514
1515 /// Adds attributes to the indicated argument
1516 void addParamAttrs(unsigned ArgNo, const AttrBuilder &B) {
1517 assert(ArgNo < arg_size() && "Out of bounds");
1518 Attrs = Attrs.addParamAttributes(getContext(), ArgNo, B);
1519 }
1520
1521 /// removes the attribute from the list of attributes.
1523 Attrs = Attrs.removeAttributeAtIndex(getContext(), i, Kind);
1524 }
1525
1526 /// removes the attribute from the list of attributes.
1527 void removeAttributeAtIndex(unsigned i, StringRef Kind) {
1528 Attrs = Attrs.removeAttributeAtIndex(getContext(), i, Kind);
1529 }
1530
1531 /// Removes the attributes from the function
1532 void removeFnAttrs(const AttributeMask &AttrsToRemove) {
1533 Attrs = Attrs.removeFnAttributes(getContext(), AttrsToRemove);
1534 }
1535
1536 /// Removes the attribute from the function
1538 Attrs = Attrs.removeFnAttribute(getContext(), Kind);
1539 }
1540
1541 /// Removes the attribute from the function
1543 Attrs = Attrs.removeFnAttribute(getContext(), Kind);
1544 }
1545
1546 /// Removes the attribute from the return value
1548 Attrs = Attrs.removeRetAttribute(getContext(), Kind);
1549 }
1550
1551 /// Removes the attributes from the return value
1552 void removeRetAttrs(const AttributeMask &AttrsToRemove) {
1553 Attrs = Attrs.removeRetAttributes(getContext(), AttrsToRemove);
1554 }
1555
1556 /// Removes the attribute from the given argument
1557 void removeParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) {
1558 assert(ArgNo < arg_size() && "Out of bounds");
1559 Attrs = Attrs.removeParamAttribute(getContext(), ArgNo, Kind);
1560 }
1561
1562 /// Removes the attribute from the given argument
1563 void removeParamAttr(unsigned ArgNo, StringRef Kind) {
1564 assert(ArgNo < arg_size() && "Out of bounds");
1565 Attrs = Attrs.removeParamAttribute(getContext(), ArgNo, Kind);
1566 }
1567
1568 /// Removes the attributes from the given argument
1569 void removeParamAttrs(unsigned ArgNo, const AttributeMask &AttrsToRemove) {
1570 Attrs = Attrs.removeParamAttributes(getContext(), ArgNo, AttrsToRemove);
1571 }
1572
1573 /// adds the dereferenceable attribute to the list of attributes.
1574 void addDereferenceableParamAttr(unsigned i, uint64_t Bytes) {
1575 Attrs = Attrs.addDereferenceableParamAttr(getContext(), i, Bytes);
1576 }
1577
1578 /// adds the dereferenceable attribute to the list of attributes.
1580 Attrs = Attrs.addDereferenceableRetAttr(getContext(), Bytes);
1581 }
1582
1583 /// adds the range attribute to the list of attributes.
1585 Attrs = Attrs.addRangeRetAttr(getContext(), CR);
1586 }
1587
1588 /// Determine whether the return value has the given attribute.
1590 return hasRetAttrImpl(Kind);
1591 }
1592 /// Determine whether the return value has the given attribute.
1593 bool hasRetAttr(StringRef Kind) const { return hasRetAttrImpl(Kind); }
1594
1595 /// Return the attribute for the given attribute kind for the return value.
1597 Attribute RetAttr = Attrs.getRetAttr(Kind);
1598 if (RetAttr.isValid())
1599 return RetAttr;
1600
1601 // Look at the callee, if available.
1602 if (const Function *F = getCalledFunction())
1603 return F->getRetAttribute(Kind);
1604 return Attribute();
1605 }
1606
1607 /// Determine whether the argument or parameter has the given attribute.
1608 LLVM_ABI bool paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const;
1609
1610 /// Return true if this argument has the nonnull attribute on either the
1611 /// CallBase instruction or the called function. Also returns true if at least
1612 /// one byte is known to be dereferenceable and the pointer is in
1613 /// addrspace(0). If \p AllowUndefOrPoison is true, respect the semantics of
1614 /// nonnull attribute and return true even if the argument can be undef or
1615 /// poison.
1616 LLVM_ABI bool paramHasNonNullAttr(unsigned ArgNo,
1617 bool AllowUndefOrPoison) const;
1618
1619 /// Get the attribute of a given kind at a position.
1621 return getAttributes().getAttributeAtIndex(i, Kind);
1622 }
1623
1624 /// Get the attribute of a given kind at a position.
1625 Attribute getAttributeAtIndex(unsigned i, StringRef Kind) const {
1626 return getAttributes().getAttributeAtIndex(i, Kind);
1627 }
1628
1629 /// Get the attribute of a given kind for the function.
1631 Attribute Attr = getAttributes().getFnAttr(Kind);
1632 if (Attr.isValid())
1633 return Attr;
1634 return getFnAttrOnCalledFunction(Kind);
1635 }
1636
1637 /// Get the attribute of a given kind for the function.
1639 Attribute A = getAttributes().getFnAttr(Kind);
1640 if (A.isValid())
1641 return A;
1642 return getFnAttrOnCalledFunction(Kind);
1643 }
1644
1645 /// Get the attribute of a given kind from a given arg
1646 Attribute getParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) const {
1647 assert(ArgNo < arg_size() && "Out of bounds");
1648 Attribute A = getAttributes().getParamAttr(ArgNo, Kind);
1649 if (A.isValid())
1650 return A;
1651 return getParamAttrOnCalledFunction(ArgNo, Kind);
1652 }
1653
1654 /// Get the attribute of a given kind from a given arg
1655 Attribute getParamAttr(unsigned ArgNo, StringRef Kind) const {
1656 assert(ArgNo < arg_size() && "Out of bounds");
1657 Attribute A = getAttributes().getParamAttr(ArgNo, Kind);
1658 if (A.isValid())
1659 return A;
1660 return getParamAttrOnCalledFunction(ArgNo, Kind);
1661 }
1662
1663 /// Return true if the data operand at index \p i has the attribute \p
1664 /// A.
1665 ///
1666 /// Data operands include call arguments and values used in operand bundles,
1667 /// but does not include the callee operand.
1668 ///
1669 /// The index \p i is interpreted as
1670 ///
1671 /// \p i in [0, arg_size) -> argument number (\p i)
1672 /// \p i in [arg_size, data_operand_size) -> bundle operand at index
1673 /// (\p i) in the operand list.
1674 bool dataOperandHasImpliedAttr(unsigned i, Attribute::AttrKind Kind) const {
1675 // Note that we have to add one because `i` isn't zero-indexed.
1677 "Data operand index out of bounds!");
1678
1679 // The attribute A can either be directly specified, if the operand in
1680 // question is a call argument; or be indirectly implied by the kind of its
1681 // containing operand bundle, if the operand is a bundle operand.
1682
1683 if (i < arg_size())
1684 return paramHasAttr(i, Kind);
1685
1687 "Must be either a call argument or an operand bundle!");
1688 return bundleOperandHasAttr(i, Kind);
1689 }
1690
1691 /// Return which pointer components this operand may capture.
1692 LLVM_ABI CaptureInfo getCaptureInfo(unsigned OpNo) const;
1693
1694 /// Determine whether this data operand is not captured.
1695 // FIXME: Once this API is no longer duplicated in `CallSite`, rename this to
1696 // better indicate that this may return a conservative answer.
1697 bool doesNotCapture(unsigned OpNo) const {
1698 return capturesNothing(getCaptureInfo(OpNo));
1699 }
1700
1701 /// Returns whether the call has an argument that has an attribute like
1702 /// captures(ret: address, provenance), where the return capture components
1703 /// are not a subset of the other capture components.
1705
1706 /// Determine whether this argument is passed by value.
1707 bool isByValArgument(unsigned ArgNo) const {
1708 return paramHasAttr(ArgNo, Attribute::ByVal);
1709 }
1710
1711 /// Determine whether this argument is passed in an alloca.
1712 bool isInAllocaArgument(unsigned ArgNo) const {
1713 return paramHasAttr(ArgNo, Attribute::InAlloca);
1714 }
1715
1716 /// Determine whether this argument is passed by value, in an alloca, or is
1717 /// preallocated.
1718 bool isPassPointeeByValueArgument(unsigned ArgNo) const {
1719 return paramHasAttr(ArgNo, Attribute::ByVal) ||
1720 paramHasAttr(ArgNo, Attribute::InAlloca) ||
1721 paramHasAttr(ArgNo, Attribute::Preallocated);
1722 }
1723
1724 /// Determine whether passing undef to this argument is undefined behavior.
1725 /// If passing undef to this argument is UB, passing poison is UB as well
1726 /// because poison is more undefined than undef.
1727 bool isPassingUndefUB(unsigned ArgNo) const {
1728 return paramHasAttr(ArgNo, Attribute::NoUndef) ||
1729 // dereferenceable implies noundef.
1730 paramHasAttr(ArgNo, Attribute::Dereferenceable) ||
1731 // dereferenceable implies noundef, and null is a well-defined value.
1732 paramHasAttr(ArgNo, Attribute::DereferenceableOrNull);
1733 }
1734
1735 /// Determine if there are is an inalloca argument. Only the last argument can
1736 /// have the inalloca attribute.
1737 bool hasInAllocaArgument() const {
1738 return !arg_empty() && paramHasAttr(arg_size() - 1, Attribute::InAlloca);
1739 }
1740
1741 // FIXME: Once this API is no longer duplicated in `CallSite`, rename this to
1742 // better indicate that this may return a conservative answer.
1743 bool doesNotAccessMemory(unsigned OpNo) const {
1744 return dataOperandHasImpliedAttr(OpNo, Attribute::ReadNone);
1745 }
1746
1747 // FIXME: Once this API is no longer duplicated in `CallSite`, rename this to
1748 // better indicate that this may return a conservative answer.
1749 bool onlyReadsMemory(unsigned OpNo) const {
1750 // If the argument is passed byval, the callee does not have access to the
1751 // original pointer and thus cannot write to it.
1752 if (OpNo < arg_size() && isByValArgument(OpNo))
1753 return true;
1754
1755 return dataOperandHasImpliedAttr(OpNo, Attribute::ReadOnly) ||
1756 dataOperandHasImpliedAttr(OpNo, Attribute::ReadNone);
1757 }
1758
1759 // FIXME: Once this API is no longer duplicated in `CallSite`, rename this to
1760 // better indicate that this may return a conservative answer.
1761 bool onlyWritesMemory(unsigned OpNo) const {
1762 return dataOperandHasImpliedAttr(OpNo, Attribute::WriteOnly) ||
1763 dataOperandHasImpliedAttr(OpNo, Attribute::ReadNone);
1764 }
1765
1766 /// Extract the alignment of the return value.
1768 if (auto Align = Attrs.getRetAlignment())
1769 return Align;
1770 if (const Function *F = getCalledFunction())
1771 return F->getAttributes().getRetAlignment();
1772 return std::nullopt;
1773 }
1774
1775 /// Extract the alignment for a call or parameter (0=unknown).
1776 MaybeAlign getParamAlign(unsigned ArgNo) const {
1777 return Attrs.getParamAlignment(ArgNo);
1778 }
1779
1780 MaybeAlign getParamStackAlign(unsigned ArgNo) const {
1781 return Attrs.getParamStackAlignment(ArgNo);
1782 }
1783
1784 /// Extract the byref type for a call or parameter.
1785 Type *getParamByRefType(unsigned ArgNo) const {
1786 if (auto *Ty = Attrs.getParamByRefType(ArgNo))
1787 return Ty;
1788 if (const Function *F = getCalledFunction())
1789 return F->getAttributes().getParamByRefType(ArgNo);
1790 return nullptr;
1791 }
1792
1793 /// Extract the byval type for a call or parameter.
1794 Type *getParamByValType(unsigned ArgNo) const {
1795 if (auto *Ty = Attrs.getParamByValType(ArgNo))
1796 return Ty;
1797 if (const Function *F = getCalledFunction())
1798 return F->getAttributes().getParamByValType(ArgNo);
1799 return nullptr;
1800 }
1801
1802 /// Extract the preallocated type for a call or parameter.
1803 Type *getParamPreallocatedType(unsigned ArgNo) const {
1804 if (auto *Ty = Attrs.getParamPreallocatedType(ArgNo))
1805 return Ty;
1806 if (const Function *F = getCalledFunction())
1807 return F->getAttributes().getParamPreallocatedType(ArgNo);
1808 return nullptr;
1809 }
1810
1811 /// Extract the inalloca type for a call or parameter.
1812 Type *getParamInAllocaType(unsigned ArgNo) const {
1813 if (auto *Ty = Attrs.getParamInAllocaType(ArgNo))
1814 return Ty;
1815 if (const Function *F = getCalledFunction())
1816 return F->getAttributes().getParamInAllocaType(ArgNo);
1817 return nullptr;
1818 }
1819
1820 /// Extract the sret type for a call or parameter.
1821 Type *getParamStructRetType(unsigned ArgNo) const {
1822 if (auto *Ty = Attrs.getParamStructRetType(ArgNo))
1823 return Ty;
1824 if (const Function *F = getCalledFunction())
1825 return F->getAttributes().getParamStructRetType(ArgNo);
1826 return nullptr;
1827 }
1828
1829 /// Extract the elementtype type for a parameter.
1830 /// Note that elementtype() can only be applied to call arguments, not
1831 /// function declaration parameters.
1832 Type *getParamElementType(unsigned ArgNo) const {
1833 return Attrs.getParamElementType(ArgNo);
1834 }
1835
1836 /// Extract the number of dereferenceable bytes for a call or
1837 /// parameter (0=unknown).
1839 uint64_t Bytes = Attrs.getRetDereferenceableBytes();
1840 if (const Function *F = getCalledFunction())
1841 Bytes = std::max(Bytes, F->getAttributes().getRetDereferenceableBytes());
1842 return Bytes;
1843 }
1844
1845 /// Extract the number of dereferenceable bytes for a call or
1846 /// parameter (0=unknown).
1848 return Attrs.getParamDereferenceableBytes(i);
1849 }
1850
1851 /// Extract the number of dereferenceable_or_null bytes for a call
1852 /// (0=unknown).
1854 uint64_t Bytes = Attrs.getRetDereferenceableOrNullBytes();
1855 if (const Function *F = getCalledFunction()) {
1856 Bytes = std::max(Bytes,
1857 F->getAttributes().getRetDereferenceableOrNullBytes());
1858 }
1859
1860 return Bytes;
1861 }
1862
1863 /// Extract the number of dereferenceable_or_null bytes for a
1864 /// parameter (0=unknown).
1866 return Attrs.getParamDereferenceableOrNullBytes(i);
1867 }
1868
1869 /// Extract a test mask for disallowed floating-point value classes for the
1870 /// return value.
1872
1873 /// Extract a test mask for disallowed floating-point value classes for the
1874 /// parameter.
1875 LLVM_ABI FPClassTest getParamNoFPClass(unsigned i) const;
1876
1877 /// If this return value has a range attribute, return the value range of the
1878 /// argument. Otherwise, std::nullopt is returned.
1879 LLVM_ABI std::optional<ConstantRange> getRange() const;
1880
1881 /// Return true if the return value is known to be not null.
1882 /// This may be because it has the nonnull attribute, or because at least
1883 /// one byte is dereferenceable and the pointer is in addrspace(0).
1884 LLVM_ABI bool isReturnNonNull() const;
1885
1886 /// Determine if the return value is marked with NoAlias attribute.
1887 bool returnDoesNotAlias() const {
1888 return Attrs.hasRetAttr(Attribute::NoAlias);
1889 }
1890
1891 /// If one of the arguments has the 'returned' attribute, returns its
1892 /// operand value. Otherwise, return nullptr.
1894 return getArgOperandWithAttribute(Attribute::Returned);
1895 }
1896
1897 /// If one of the arguments has the specified attribute, returns its
1898 /// operand value. Otherwise, return nullptr.
1900
1901 /// Return true if the call should not be treated as a call to a
1902 /// builtin.
1903 bool isNoBuiltin() const {
1904 return hasFnAttrImpl(Attribute::NoBuiltin) &&
1905 !hasFnAttrImpl(Attribute::Builtin);
1906 }
1907
1908 /// Determine if the call requires strict floating point semantics.
1909 bool isStrictFP() const { return hasFnAttr(Attribute::StrictFP); }
1910
1911 /// Return true if the call should not be inlined.
1912 bool isNoInline() const { return hasFnAttr(Attribute::NoInline); }
1913 void setIsNoInline() { addFnAttr(Attribute::NoInline); }
1914
1917
1918 /// Determine if the call does not access memory.
1919 LLVM_ABI bool doesNotAccessMemory() const;
1921
1922 /// Determine if the call does not access or only reads memory.
1923 LLVM_ABI bool onlyReadsMemory() const;
1925
1926 /// Determine if the call does not access or only writes memory.
1927 LLVM_ABI bool onlyWritesMemory() const;
1929
1930 /// Determine if the call can access memmory only using pointers based
1931 /// on its arguments.
1932 LLVM_ABI bool onlyAccessesArgMemory() const;
1934
1935 /// Determine if the function may only access memory that is
1936 /// inaccessible from the IR.
1939
1940 /// Determine if the function may only access memory that is
1941 /// either inaccessible from the IR or pointed to by its arguments.
1944
1945 /// Determine if the call cannot return.
1946 bool doesNotReturn() const { return hasFnAttr(Attribute::NoReturn); }
1947 void setDoesNotReturn() { addFnAttr(Attribute::NoReturn); }
1948
1949 /// Determine if the call should not perform indirect branch tracking.
1950 bool doesNoCfCheck() const { return hasFnAttr(Attribute::NoCfCheck); }
1951
1952 /// Determine if the call cannot unwind.
1953 bool doesNotThrow() const { return hasFnAttr(Attribute::NoUnwind); }
1954 void setDoesNotThrow() { addFnAttr(Attribute::NoUnwind); }
1955
1956 /// Determine if the invoke cannot be duplicated.
1957 bool cannotDuplicate() const { return hasFnAttr(Attribute::NoDuplicate); }
1958 void setCannotDuplicate() { addFnAttr(Attribute::NoDuplicate); }
1959
1960 /// Determine if the call cannot be tail merged.
1961 bool cannotMerge() const { return hasFnAttr(Attribute::NoMerge); }
1962 void setCannotMerge() { addFnAttr(Attribute::NoMerge); }
1963
1964 /// Determine if the invoke is convergent
1965 bool isConvergent() const { return hasFnAttr(Attribute::Convergent); }
1966 void setConvergent() { addFnAttr(Attribute::Convergent); }
1967 void setNotConvergent() { removeFnAttr(Attribute::Convergent); }
1968
1969 /// Determine if the call returns a structure through first
1970 /// pointer argument.
1971 bool hasStructRetAttr() const {
1972 if (arg_empty())
1973 return false;
1974
1975 // Be friendly and also check the callee.
1976 return paramHasAttr(0, Attribute::StructRet);
1977 }
1978
1979 /// Determine if any call argument is an aggregate passed by value.
1980 bool hasByValArgument() const {
1981 return Attrs.hasAttrSomewhere(Attribute::ByVal);
1982 }
1983
1984 ///@}
1985 // End of attribute API.
1986
1987 /// \name Operand Bundle API
1988 ///
1989 /// This group of methods provides the API to access and manipulate operand
1990 /// bundles on this call.
1991 /// @{
1992
1993 /// Return the number of operand bundles associated with this User.
1994 unsigned getNumOperandBundles() const {
1995 return std::distance(bundle_op_info_begin(), bundle_op_info_end());
1996 }
1997
1998 /// Return true if this User has any operand bundles.
1999 bool hasOperandBundles() const { return getNumOperandBundles() != 0; }
2000
2001 /// Return the index of the first bundle operand in the Use array.
2003 assert(hasOperandBundles() && "Don't call otherwise!");
2004 return bundle_op_info_begin()->Begin;
2005 }
2006
2007 /// Return the index of the last bundle operand in the Use array.
2008 unsigned getBundleOperandsEndIndex() const {
2009 assert(hasOperandBundles() && "Don't call otherwise!");
2010 return bundle_op_info_end()[-1].End;
2011 }
2012
2013 /// Return true if the operand at index \p Idx is a bundle operand.
2014 bool isBundleOperand(unsigned Idx) const {
2015 return hasOperandBundles() && Idx >= getBundleOperandsStartIndex() &&
2017 }
2018
2019 /// Return true if the operand at index \p Idx is a bundle operand that has
2020 /// tag ID \p ID.
2021 bool isOperandBundleOfType(uint32_t ID, unsigned Idx) const {
2022 return isBundleOperand(Idx) &&
2024 }
2025
2026 /// Returns true if the use is a bundle operand.
2027 bool isBundleOperand(const Use *U) const {
2028 assert(this == U->getUser() &&
2029 "Only valid to query with a use of this instruction!");
2030 return hasOperandBundles() && isBundleOperand(U - op_begin());
2031 }
2033 return isBundleOperand(&UI.getUse());
2034 }
2035
2036 /// Return the total number operands (not operand bundles) used by
2037 /// every operand bundle in this OperandBundleUser.
2038 unsigned getNumTotalBundleOperands() const {
2039 if (!hasOperandBundles())
2040 return 0;
2041
2042 unsigned Begin = getBundleOperandsStartIndex();
2043 unsigned End = getBundleOperandsEndIndex();
2044
2045 assert(Begin <= End && "Should be!");
2046 return End - Begin;
2047 }
2048
2049 /// Return the operand bundle at a specific index.
2050 OperandBundleUse getOperandBundleAt(unsigned Index) const {
2051 assert(Index < getNumOperandBundles() && "Index out of bounds!");
2053 }
2054
2055 /// Return the number of operand bundles with the tag Name attached to
2056 /// this instruction.
2058 unsigned Count = 0;
2059 for (unsigned i = 0, e = getNumOperandBundles(); i != e; ++i)
2060 if (getOperandBundleAt(i).getTagName() == Name)
2061 Count++;
2062
2063 return Count;
2064 }
2065
2066 /// Return the number of operand bundles with the tag ID attached to
2067 /// this instruction.
2069 unsigned Count = 0;
2070 for (unsigned i = 0, e = getNumOperandBundles(); i != e; ++i)
2071 if (getOperandBundleAt(i).getTagID() == ID)
2072 Count++;
2073
2074 return Count;
2075 }
2076
2077 /// Return an operand bundle by name, if present.
2078 ///
2079 /// It is an error to call this for operand bundle types that may have
2080 /// multiple instances of them on the same instruction.
2081 std::optional<OperandBundleUse> getOperandBundle(StringRef Name) const {
2082 assert(countOperandBundlesOfType(Name) < 2 && "Precondition violated!");
2083
2084 for (unsigned i = 0, e = getNumOperandBundles(); i != e; ++i) {
2086 if (U.getTagName() == Name)
2087 return U;
2088 }
2089
2090 return std::nullopt;
2091 }
2092
2093 /// Return an operand bundle by tag ID, if present.
2094 ///
2095 /// It is an error to call this for operand bundle types that may have
2096 /// multiple instances of them on the same instruction.
2097 std::optional<OperandBundleUse> getOperandBundle(uint32_t ID) const {
2098 assert(countOperandBundlesOfType(ID) < 2 && "Precondition violated!");
2099
2100 for (unsigned i = 0, e = getNumOperandBundles(); i != e; ++i) {
2102 if (U.getTagID() == ID)
2103 return U;
2104 }
2105
2106 return std::nullopt;
2107 }
2108
2109 /// Return the list of operand bundles attached to this instruction as
2110 /// a vector of OperandBundleDefs.
2111 ///
2112 /// This function copies the OperandBundeUse instances associated with this
2113 /// OperandBundleUser to a vector of OperandBundleDefs. Note:
2114 /// OperandBundeUses and OperandBundleDefs are non-trivially *different*
2115 /// representations of operand bundles (see documentation above).
2116 LLVM_ABI void
2118
2119 /// Return the operand bundle for the operand at index OpIdx.
2120 ///
2121 /// It is an error to call this with an OpIdx that does not correspond to an
2122 /// bundle operand.
2126
2127 /// Return true if this operand bundle user has operand bundles that
2128 /// may read from the heap.
2130
2131 /// Return true if this operand bundle user has operand bundles that
2132 /// may write to the heap.
2134
2135 /// Return true if the bundle operand at index \p OpIdx has the
2136 /// attribute \p A.
2138 auto &BOI = getBundleOpInfoForOperand(OpIdx);
2139 auto OBU = operandBundleFromBundleOpInfo(BOI);
2140 return OBU.operandHasAttr(OpIdx - BOI.Begin, A);
2141 }
2142
2143 /// Return true if \p Other has the same sequence of operand bundle
2144 /// tags with the same number of operands on each one of them as this
2145 /// OperandBundleUser.
2147 if (getNumOperandBundles() != Other.getNumOperandBundles())
2148 return false;
2149
2150 return std::equal(bundle_op_info_begin(), bundle_op_info_end(),
2151 Other.bundle_op_info_begin());
2152 }
2153
2154 /// Return true if this operand bundle user contains operand bundles
2155 /// with tags other than those specified in \p IDs.
2157 for (unsigned i = 0, e = getNumOperandBundles(); i != e; ++i) {
2159 if (!is_contained(IDs, ID))
2160 return true;
2161 }
2162 return false;
2163 }
2164
2165 /// Used to keep track of an operand bundle. See the main comment on
2166 /// OperandBundleUser above.
2168 /// The operand bundle tag, interned by
2169 /// LLVMContextImpl::getOrInsertBundleTag.
2171
2172 /// The index in the Use& vector where operands for this operand
2173 /// bundle starts.
2175
2176 /// The index in the Use& vector where operands for this operand
2177 /// bundle ends.
2179
2180 bool operator==(const BundleOpInfo &Other) const {
2181 return Tag == Other.Tag && Begin == Other.Begin && End == Other.End;
2182 }
2183 };
2184
2185 /// Simple helper function to map a BundleOpInfo to an
2186 /// OperandBundleUse.
2189 const auto *begin = op_begin();
2190 ArrayRef<Use> Inputs(begin + BOI.Begin, begin + BOI.End);
2191 return OperandBundleUse(BOI.Tag, Inputs);
2192 }
2193
2196
2197 /// Return the start of the list of BundleOpInfo instances associated
2198 /// with this OperandBundleUser.
2199 ///
2200 /// OperandBundleUser uses the descriptor area co-allocated with the host User
2201 /// to store some meta information about which operands are "normal" operands,
2202 /// and which ones belong to some operand bundle.
2203 ///
2204 /// The layout of an operand bundle user is
2205 ///
2206 /// +-----------uint32_t End-------------------------------------+
2207 /// | |
2208 /// | +--------uint32_t Begin--------------------+ |
2209 /// | | | |
2210 /// ^ ^ v v
2211 /// |------|------|----|----|----|----|----|---------|----|---------|----|-----
2212 /// | BOI0 | BOI1 | .. | DU | U0 | U1 | .. | BOI0_U0 | .. | BOI1_U0 | .. | Un
2213 /// |------|------|----|----|----|----|----|---------|----|---------|----|-----
2214 /// v v ^ ^
2215 /// | | | |
2216 /// | +--------uint32_t Begin------------+ |
2217 /// | |
2218 /// +-----------uint32_t End-----------------------------+
2219 ///
2220 ///
2221 /// BOI0, BOI1 ... are descriptions of operand bundles in this User's use
2222 /// list. These descriptions are installed and managed by this class, and
2223 /// they're all instances of OperandBundleUser<T>::BundleOpInfo.
2224 ///
2225 /// DU is an additional descriptor installed by User's 'operator new' to keep
2226 /// track of the 'BOI0 ... BOIN' co-allocation. OperandBundleUser does not
2227 /// access or modify DU in any way, it's an implementation detail private to
2228 /// User.
2229 ///
2230 /// The regular Use& vector for the User starts at U0. The operand bundle
2231 /// uses are part of the Use& vector, just like normal uses. In the diagram
2232 /// above, the operand bundle uses start at BOI0_U0. Each instance of
2233 /// BundleOpInfo has information about a contiguous set of uses constituting
2234 /// an operand bundle, and the total set of operand bundle uses themselves
2235 /// form a contiguous set of uses (i.e. there are no gaps between uses
2236 /// corresponding to individual operand bundles).
2237 ///
2238 /// This class does not know the location of the set of operand bundle uses
2239 /// within the use list -- that is decided by the User using this class via
2240 /// the BeginIdx argument in populateBundleOperandInfos.
2241 ///
2242 /// Currently operand bundle users with hung-off operands are not supported.
2244 if (!hasDescriptor())
2245 return nullptr;
2246
2247 uint8_t *BytesBegin = getDescriptor().begin();
2248 return reinterpret_cast<bundle_op_iterator>(BytesBegin);
2249 }
2250
2251 /// Return the start of the list of BundleOpInfo instances associated
2252 /// with this OperandBundleUser.
2254 auto *NonConstThis = const_cast<CallBase *>(this);
2255 return NonConstThis->bundle_op_info_begin();
2256 }
2257
2258 /// Return the end of the list of BundleOpInfo instances associated
2259 /// with this OperandBundleUser.
2261 if (!hasDescriptor())
2262 return nullptr;
2263
2264 uint8_t *BytesEnd = getDescriptor().end();
2265 return reinterpret_cast<bundle_op_iterator>(BytesEnd);
2266 }
2267
2268 /// Return the end of the list of BundleOpInfo instances associated
2269 /// with this OperandBundleUser.
2271 auto *NonConstThis = const_cast<CallBase *>(this);
2272 return NonConstThis->bundle_op_info_end();
2273 }
2274
2275 /// Return the range [\p bundle_op_info_begin, \p bundle_op_info_end).
2279
2280 /// Return the range [\p bundle_op_info_begin, \p bundle_op_info_end).
2284
2285 /// Populate the BundleOpInfo instances and the Use& vector from \p
2286 /// Bundles. Return the op_iterator pointing to the Use& one past the last
2287 /// last bundle operand use.
2288 ///
2289 /// Each \p OperandBundleDef instance is tracked by a OperandBundleInfo
2290 /// instance allocated in this User's descriptor.
2292 ArrayRef<OperandBundleDef> Bundles, const unsigned BeginIndex);
2293
2294 /// Return true if the call has deopt state bundle.
2295 bool hasDeoptState() const {
2296 return getOperandBundle(LLVMContext::OB_deopt).has_value();
2297 }
2298
2299public:
2300 /// Return the BundleOpInfo for the operand at index OpIdx.
2301 ///
2302 /// It is an error to call this with an OpIdx that does not correspond to an
2303 /// bundle operand.
2304 LLVM_ABI BundleOpInfo &getBundleOpInfoForOperand(unsigned OpIdx);
2306 return const_cast<CallBase *>(this)->getBundleOpInfoForOperand(OpIdx);
2307 }
2308
2309protected:
2310 /// Return the total number of values used in \p Bundles.
2312 unsigned Total = 0;
2313 for (const auto &B : Bundles)
2314 Total += B.input_size();
2315 return Total;
2316 }
2317
2318 /// @}
2319 // End of operand bundle API.
2320
2321private:
2322 LLVM_ABI bool hasFnAttrOnCalledFunction(Attribute::AttrKind Kind) const;
2323 LLVM_ABI bool hasFnAttrOnCalledFunction(StringRef Kind) const;
2324
2325 template <typename AttrKind> bool hasFnAttrImpl(AttrKind Kind) const {
2326 if (Attrs.hasFnAttr(Kind))
2327 return true;
2328
2329 return hasFnAttrOnCalledFunction(Kind);
2330 }
2331 template <typename AK> Attribute getFnAttrOnCalledFunction(AK Kind) const;
2332 template <typename AK>
2333 Attribute getParamAttrOnCalledFunction(unsigned ArgNo, AK Kind) const;
2334
2335 /// Determine whether the return value has the given attribute. Supports
2336 /// Attribute::AttrKind and StringRef as \p AttrKind types.
2337 template <typename AttrKind> bool hasRetAttrImpl(AttrKind Kind) const {
2338 if (Attrs.hasRetAttr(Kind))
2339 return true;
2340
2341 // Look at the callee, if available.
2342 if (const Function *F = getCalledFunction())
2343 return F->getAttributes().hasRetAttr(Kind);
2344 return false;
2345 }
2346};
2347
2348template <>
2349struct OperandTraits<CallBase> : public VariadicOperandTraits<CallBase> {};
2350
2352
2353//===----------------------------------------------------------------------===//
2354// FuncletPadInst Class
2355//===----------------------------------------------------------------------===//
2356class FuncletPadInst : public Instruction {
2357private:
2358 FuncletPadInst(const FuncletPadInst &CPI, AllocInfo AllocInfo);
2359
2360 LLVM_ABI explicit FuncletPadInst(Instruction::FuncletPadOps Op,
2361 Value *ParentPad, ArrayRef<Value *> Args,
2362 AllocInfo AllocInfo, const Twine &NameStr,
2363 InsertPosition InsertBefore);
2364
2365 void init(Value *ParentPad, ArrayRef<Value *> Args, const Twine &NameStr);
2366
2367protected:
2368 // Note: Instruction needs to be a friend here to call cloneImpl.
2369 friend class Instruction;
2370 friend class CatchPadInst;
2371 friend class CleanupPadInst;
2372
2373 LLVM_ABI FuncletPadInst *cloneImpl() const;
2374
2375public:
2376 /// Provide fast operand accessors
2378
2379 /// arg_size - Return the number of funcletpad arguments.
2380 ///
2381 unsigned arg_size() const { return getNumOperands() - 1; }
2382
2383 /// Convenience accessors
2384
2385 /// Return the outer EH-pad this funclet is nested within.
2386 ///
2387 /// Note: This returns the associated CatchSwitchInst if this FuncletPadInst
2388 /// is a CatchPadInst.
2389 Value *getParentPad() const { return Op<-1>(); }
2390 void setParentPad(Value *ParentPad) {
2391 assert(ParentPad);
2392 Op<-1>() = ParentPad;
2393 }
2394
2395 /// getArgOperand/setArgOperand - Return/set the i-th funcletpad argument.
2396 ///
2397 Value *getArgOperand(unsigned i) const { return getOperand(i); }
2398 void setArgOperand(unsigned i, Value *v) { setOperand(i, v); }
2399
2400 /// arg_operands - iteration adapter for range-for loops.
2402
2403 /// arg_operands - iteration adapter for range-for loops.
2405 return const_op_range(op_begin(), op_end() - 1);
2406 }
2407
2408 // Methods for support type inquiry through isa, cast, and dyn_cast:
2409 static bool classof(const Instruction *I) { return I->isFuncletPad(); }
2410 static bool classof(const Value *V) {
2412 }
2413};
2414
2415template <>
2417 : public VariadicOperandTraits<FuncletPadInst> {};
2418
2420
2421} // end namespace llvm
2422
2423#endif // LLVM_IR_INSTRTYPES_H
OperandBundleDefT< Value * > OperandBundleDef
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file defines the StringMap class.
constexpr LLT S1
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
@ RetAttr
This file contains the simple types necessary to represent the attributes associated with functions a...
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_ABI
Definition Compiler.h:213
static bool isSigned(unsigned int Opcode)
#define op(i)
#define DEFINE_HELPERS(OPC, NUWNSWEXACT)
Definition InstrTypes.h:330
#define F(x, y, z)
Definition MD5.cpp:55
#define I(x, y, z)
Definition MD5.cpp:58
MachineInstr unsigned OpIdx
#define DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CLASS, VALUECLASS)
Macro for generating out-of-class operand accessor definitions.
#define P(N)
This file contains some templates that are useful if you are working with the STL at all.
Provides some synthesis utilities to produce sequences of values.
Value * RHS
Value * LHS
BinaryOperator * Mul
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:41
This class stores enough information to efficiently remove some attributes from an existing AttrBuild...
This class holds the attributes for a particular argument, parameter, function, or return value.
Definition Attributes.h:361
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:69
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results,...
Definition Attributes.h:88
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition Attributes.h:223
static BinaryOperator * CreateFAddFMF(Value *V1, Value *V2, FastMathFlags FMF, const Twine &Name="")
Definition InstrTypes.h:236
static LLVM_ABI BinaryOperator * CreateNeg(Value *Op, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Helper functions to construct and inspect unary operations (NEG and NOT) via binary operators SUB and...
static BinaryOperator * CreateFDivFMF(Value *V1, Value *V2, Instruction *FMFSource, const Twine &Name="")
Definition InstrTypes.h:268
BinaryOps getOpcode() const
Definition InstrTypes.h:374
static BinaryOperator * CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name="")
Definition InstrTypes.h:279
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Transparently provide more efficient getOperand methods.
static bool classof(const Value *V)
Definition InstrTypes.h:389
static BinaryOperator * CreateFRemFMF(Value *V1, Value *V2, Instruction *FMFSource, const Twine &Name="")
Definition InstrTypes.h:273
static BinaryOperator * CreateWithFMF(BinaryOps Opc, Value *V1, Value *V2, FastMathFlags FMF, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Definition InstrTypes.h:227
static BinaryOperator * CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name="")
Definition InstrTypes.h:309
static BinaryOperator * CreateFMulFMF(Value *V1, Value *V2, Instruction *FMFSource, const Twine &Name="")
Definition InstrTypes.h:263
LLVM_ABI bool swapOperands()
Exchange the two operands to this instruction.
static BinaryOperator * CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, InsertPosition InsertBefore)
Definition InstrTypes.h:316
static LLVM_ABI BinaryOperator * CreateNot(Value *Op, const Twine &Name="", InsertPosition InsertBefore=nullptr)
friend class Instruction
Iterator for Instructions in a `BasicBlock.
Definition InstrTypes.h:181
static BinaryOperator * CreateFSubFMF(Value *V1, Value *V2, Instruction *FMFSource, const Twine &Name="")
Definition InstrTypes.h:258
static LLVM_ABI BinaryOperator * Create(BinaryOps Op, Value *S1, Value *S2, const Twine &Name=Twine(), InsertPosition InsertBefore=nullptr)
Construct a binary instruction, given the opcode and the two operands.
static BinaryOperator * CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name="")
Definition InstrTypes.h:294
static BinaryOperator * CreateFAddFMF(Value *V1, Value *V2, Instruction *FMFSource, const Twine &Name="")
Definition InstrTypes.h:253
static BinaryOperator * CreateFMulFMF(Value *V1, Value *V2, FastMathFlags FMF, const Twine &Name="")
Definition InstrTypes.h:244
static BinaryOperator * CreateFDivFMF(Value *V1, Value *V2, FastMathFlags FMF, const Twine &Name="")
Definition InstrTypes.h:248
static BinaryOperator * CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, InsertPosition InsertBefore)
Definition InstrTypes.h:301
static BinaryOperator * CreateFSubFMF(Value *V1, Value *V2, FastMathFlags FMF, const Twine &Name="")
Definition InstrTypes.h:240
static BinaryOperator * CreateDisjoint(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name="")
Definition InstrTypes.h:424
static BinaryOperator * CreateWithCopiedFlags(BinaryOps Opc, Value *V1, Value *V2, Value *CopyO, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Definition InstrTypes.h:219
LLVM_ABI BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty, const Twine &Name, InsertPosition InsertBefore)
static LLVM_ABI BinaryOperator * CreateNSWNeg(Value *Op, const Twine &Name="", InsertPosition InsertBefore=nullptr)
LLVM_ABI BinaryOperator * cloneImpl() const
static BinaryOperator * CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, InsertPosition InsertBefore)
Definition InstrTypes.h:286
static bool classof(const Instruction *I)
Definition InstrTypes.h:386
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
MaybeAlign getParamStackAlign(unsigned ArgNo) const
void setCalledFunction(FunctionType *FTy, Value *Fn)
Sets the function called, including updating to the specified function type.
LLVM_ABI FPClassTest getParamNoFPClass(unsigned i) const
Extract a test mask for disallowed floating-point value classes for the parameter.
bool isInlineAsm() const
Check if this call is an inline asm statement.
void addFnAttr(Attribute Attr)
Adds the attribute to the function.
bool hasDescriptor() const
LLVM_ABI BundleOpInfo & getBundleOpInfoForOperand(unsigned OpIdx)
Return the BundleOpInfo for the operand at index OpIdx.
Attribute getRetAttr(Attribute::AttrKind Kind) const
Return the attribute for the given attribute kind for the return value.
void setCallingConv(CallingConv::ID CC)
void setDoesNotReturn()
LLVM_ABI FPClassTest getRetNoFPClass() const
Extract a test mask for disallowed floating-point value classes for the return value.
bool cannotMerge() const
Determine if the call cannot be tail merged.
unsigned getBundleOperandsEndIndex() const
Return the index of the last bundle operand in the Use array.
bundle_op_iterator bundle_op_info_begin()
Return the start of the list of BundleOpInfo instances associated with this OperandBundleUser.
LLVM_ABI bool paramHasNonNullAttr(unsigned ArgNo, bool AllowUndefOrPoison) const
Return true if this argument has the nonnull attribute on either the CallBase instruction or the call...
LLVM_ABI MemoryEffects getMemoryEffects() const
void setDoesNotThrow()
void addRangeRetAttr(const ConstantRange &CR)
adds the range attribute to the list of attributes.
bool arg_empty() const
void addFnAttr(Attribute::AttrKind Kind)
Adds the attribute to the function.
bool hasInAllocaArgument() const
Determine if there are is an inalloca argument.
void removeParamAttrs(unsigned ArgNo, const AttributeMask &AttrsToRemove)
Removes the attributes from the given argument.
bool hasByValArgument() const
Determine if any call argument is an aggregate passed by value.
LLVM_ABI bool doesNotAccessMemory() const
Determine if the call does not access memory.
MaybeAlign getRetAlign() const
Extract the alignment of the return value.
LLVM_ABI void getOperandBundlesAsDefs(SmallVectorImpl< OperandBundleDef > &Defs) const
Return the list of operand bundles attached to this instruction as a vector of OperandBundleDefs.
Type * getParamByRefType(unsigned ArgNo) const
Extract the byref type for a call or parameter.
LLVM_ABI void setOnlyAccessesArgMemory()
iterator_range< const_bundle_op_iterator > bundle_op_infos() const
Return the range [bundle_op_info_begin, bundle_op_info_end).
OperandBundleUse getOperandBundleAt(unsigned Index) const
Return the operand bundle at a specific index.
OperandBundleUse operandBundleFromBundleOpInfo(const BundleOpInfo &BOI) const
Simple helper function to map a BundleOpInfo to an OperandBundleUse.
bool isPassingUndefUB(unsigned ArgNo) const
Determine whether passing undef to this argument is undefined behavior.
bool hasArgument(const Value *V) const
Returns true if this CallSite passes the given Value* as an argument to the called function.
Type * getParamPreallocatedType(unsigned ArgNo) const
Extract the preallocated type for a call or parameter.
LLVM_ABI void setOnlyAccessesInaccessibleMemOrArgMem()
bool data_operands_empty() const
bool isNoBuiltin() const
Return true if the call should not be treated as a call to a builtin.
bool isOperandBundleOfType(uint32_t ID, unsigned Idx) const
Return true if the operand at index Idx is a bundle operand that has tag ID ID.
void addAttributeAtIndex(unsigned i, Attribute Attr)
adds the attribute to the list of attributes.
Bitfield::Element< CallingConv::ID, CallInstReservedField::NextBit, 10, CallingConv::MaxID > CallingConvField
unsigned getDataOperandNo(const Use *U) const
Given a use for a data operand, get the data operand number that corresponds to it.
Bitfield::Element< unsigned, 0, 2 > CallInstReservedField
std::optional< OperandBundleUse > getOperandBundle(StringRef Name) const
Return an operand bundle by name, if present.
bool doesNotCapture(unsigned OpNo) const
Determine whether this data operand is not captured.
Type * getParamStructRetType(unsigned ArgNo) const
Extract the sret type for a call or parameter.
Attribute getParamAttr(unsigned ArgNo, StringRef Kind) const
Get the attribute of a given kind from a given arg.
void removeParamAttr(unsigned ArgNo, Attribute::AttrKind Kind)
Removes the attribute from the given argument.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
Type * getParamInAllocaType(unsigned ArgNo) const
Extract the inalloca type for a call or parameter.
bool doesNotAccessMemory(unsigned OpNo) const
void removeRetAttrs(const AttributeMask &AttrsToRemove)
Removes the attributes from the return value.
LLVM_ABI void setDoesNotAccessMemory()
bool isInAllocaArgument(unsigned ArgNo) const
Determine whether this argument is passed in an alloca.
Use & getArgOperandUse(unsigned i)
bool hasFnAttr(Attribute::AttrKind Kind) const
Determine whether this call has the given attribute.
bool isStrictFP() const
Determine if the call requires strict floating point semantics.
User::op_iterator data_operands_begin()
data_operands_begin/data_operands_end - Return iterators iterating over the call / invoke argument li...
bool cannotDuplicate() const
Determine if the invoke cannot be duplicated.
AttributeSet getParamAttributes(unsigned ArgNo) const
Return the param attributes for this call.
bool hasRetAttr(Attribute::AttrKind Kind) const
Determine whether the return value has the given attribute.
User::const_op_iterator data_operands_end() const
LLVM_ABI bool onlyAccessesInaccessibleMemory() const
Determine if the function may only access memory that is inaccessible from the IR.
unsigned getNumOperandBundles() const
Return the number of operand bundles associated with this User.
uint64_t getParamDereferenceableBytes(unsigned i) const
Extract the number of dereferenceable bytes for a call or parameter (0=unknown).
void removeAttributeAtIndex(unsigned i, StringRef Kind)
removes the attribute from the list of attributes.
unsigned getDataOperandNo(Value::const_user_iterator UI) const
Given a value use iterator, return the data operand corresponding to it.
CallingConv::ID getCallingConv() const
bundle_op_iterator bundle_op_info_end()
Return the end of the list of BundleOpInfo instances associated with this OperandBundleUser.
LLVM_ABI unsigned getNumSubclassExtraOperandsDynamic() const
Get the number of extra operands for instructions that don't have a fixed number of extra operands.
void addParamAttr(unsigned ArgNo, Attribute Attr)
Adds the attribute to the indicated argument.
BundleOpInfo * bundle_op_iterator
unsigned getNumSubclassExtraOperands() const
bool doesNoCfCheck() const
Determine if the call should not perform indirect branch tracking.
bool hasFnAttr(StringRef Kind) const
Determine whether this call has the given attribute.
LLVM_ABI bool paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Determine whether the argument or parameter has the given attribute.
bool hasIdenticalOperandBundleSchema(const CallBase &Other) const
Return true if Other has the same sequence of operand bundle tags with the same number of operands on...
User::const_op_iterator arg_begin() const
User::op_iterator arg_begin()
Return the iterator pointing to the beginning of the argument list.
LLVM_ABI bool isMustTailCall() const
Tests if this call site must be tail call optimized.
Attribute getParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Get the attribute of a given kind from a given arg.
bool hasRetAttr(StringRef Kind) const
Determine whether the return value has the given attribute.
static bool classof(const Instruction *I)
bool isDataOperand(Value::const_user_iterator UI) const
Use & getCalledOperandUse()
LLVM_ABI bool isIndirectCall() const
Return true if the callsite is an indirect call.
bool isNoInline() const
Return true if the call should not be inlined.
bool dataOperandHasImpliedAttr(unsigned i, Attribute::AttrKind Kind) const
Return true if the data operand at index i has the attribute A.
static constexpr int CalledOperandOpEndIdx
The last operand is the called operand.
LLVM_ABI bool onlyReadsMemory() const
Determine if the call does not access or only reads memory.
bool isBundleOperand(const Use *U) const
Returns true if the use is a bundle operand.
bool isByValArgument(unsigned ArgNo) const
Determine whether this argument is passed by value.
iterator_range< bundle_op_iterator > bundle_op_infos()
Return the range [bundle_op_info_begin, bundle_op_info_end).
bool onlyWritesMemory(unsigned OpNo) const
unsigned countOperandBundlesOfType(StringRef Name) const
Return the number of operand bundles with the tag Name attached to this instruction.
LLVM_ABI void setOnlyReadsMemory()
void removeFnAttrs(const AttributeMask &AttrsToRemove)
Removes the attributes from the function.
iterator_range< User::op_iterator > data_ops()
const_bundle_op_iterator bundle_op_info_begin() const
Return the start of the list of BundleOpInfo instances associated with this OperandBundleUser.
void setCannotMerge()
static LLVM_ABI CallBase * addOperandBundle(CallBase *CB, uint32_t ID, OperandBundleDef OB, InsertPosition InsertPt=nullptr)
Create a clone of CB with operand bundle OB added.
bool isCallee(Value::const_user_iterator UI) const
Determine whether the passed iterator points to the callee operand's Use.
iterator_range< User::const_op_iterator > args() const
MaybeAlign getParamAlign(unsigned ArgNo) const
Extract the alignment for a call or parameter (0=unknown).
unsigned getBundleOperandsStartIndex() const
Return the index of the first bundle operand in the Use array.
LLVM_ABI bool onlyAccessesInaccessibleMemOrArgMem() const
Determine if the function may only access memory that is either inaccessible from the IR or pointed t...
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
LLVM_ABI CaptureInfo getCaptureInfo(unsigned OpNo) const
Return which pointer components this operand may capture.
AttributeSet getRetAttributes() const
Return the return attributes for this call.
Attribute getFnAttr(Attribute::AttrKind Kind) const
Get the attribute of a given kind for the function.
User::op_iterator data_operands_end()
bool onlyReadsMemory(unsigned OpNo) const
void setNotConvergent()
LLVM_ABI bool hasArgumentWithAdditionalReturnCaptureComponents() const
Returns whether the call has an argument that has an attribute like captures(ret: address,...
Type * getParamByValType(unsigned ArgNo) const
Extract the byval type for a call or parameter.
bool isCallee(const Use *U) const
Determine whether this Use is the callee operand's Use.
CallBase(AttributeList const &A, FunctionType *FT, ArgsTy &&... Args)
const BundleOpInfo & getBundleOpInfoForOperand(unsigned OpIdx) const
Value * getCalledOperand() const
void setCalledFunction(FunctionCallee Fn)
Sets the function called, including updating the function type.
const Use & getCalledOperandUse() const
bool isArgOperand(Value::const_user_iterator UI) const
LLVM_ABI void setOnlyWritesMemory()
LLVM_ABI op_iterator populateBundleOperandInfos(ArrayRef< OperandBundleDef > Bundles, const unsigned BeginIndex)
Populate the BundleOpInfo instances and the Use& vector from Bundles.
void removeRetAttr(Attribute::AttrKind Kind)
Removes the attribute from the return value.
AttributeList Attrs
parameter attributes for callable
void addDereferenceableRetAttr(uint64_t Bytes)
adds the dereferenceable attribute to the list of attributes.
unsigned getArgOperandNo(Value::const_user_iterator UI) const
Given a value use iterator, return the arg operand number corresponding to it.
void setAttributes(AttributeList A)
Set the attributes for this call.
Attribute getFnAttr(StringRef Kind) const
Get the attribute of a given kind for the function.
void addAttributeAtIndex(unsigned i, Attribute::AttrKind Kind)
adds the attribute to the list of attributes.
unsigned countOperandBundlesOfType(uint32_t ID) const
Return the number of operand bundles with the tag ID attached to this instruction.
const Use & getArgOperandUse(unsigned i) const
Wrappers for getting the Use of a call argument.
bool hasOperandBundlesOtherThan(ArrayRef< uint32_t > IDs) const
Return true if this operand bundle user contains operand bundles with tags other than those specified...
bool returnDoesNotAlias() const
Determine if the return value is marked with NoAlias attribute.
OperandBundleUse getOperandBundleForOperand(unsigned OpIdx) const
Return the operand bundle for the operand at index OpIdx.
LLVM_ABI std::optional< ConstantRange > getRange() const
If this return value has a range attribute, return the value range of the argument.
bool doesNotThrow() const
Determine if the call cannot unwind.
void addRetAttr(Attribute::AttrKind Kind)
Adds the attribute to the return value.
Type * getParamElementType(unsigned ArgNo) const
Extract the elementtype type for a parameter.
LLVM_ABI bool isReturnNonNull() const
Return true if the return value is known to be not null.
Value * getArgOperand(unsigned i) const
FunctionType * FTy
bool hasStructRetAttr() const
Determine if the call returns a structure through first pointer argument.
uint64_t getRetDereferenceableBytes() const
Extract the number of dereferenceable bytes for a call or parameter (0=unknown).
void removeAttributeAtIndex(unsigned i, Attribute::AttrKind Kind)
removes the attribute from the list of attributes.
void setCannotDuplicate()
User::const_op_iterator data_operands_begin() const
void mutateFunctionType(FunctionType *FTy)
void addRetAttrs(const AttrBuilder &B)
Adds attributes to the return value.
uint64_t getParamDereferenceableOrNullBytes(unsigned i) const
Extract the number of dereferenceable_or_null bytes for a parameter (0=unknown).
void setArgOperand(unsigned i, Value *v)
Attribute getAttributeAtIndex(unsigned i, Attribute::AttrKind Kind) const
Get the attribute of a given kind at a position.
bool bundleOperandHasAttr(unsigned OpIdx, Attribute::AttrKind A) const
Return true if the bundle operand at index OpIdx has the attribute A.
User::op_iterator arg_end()
Return the iterator pointing to the end of the argument list.
bool isBundleOperand(unsigned Idx) const
Return true if the operand at index Idx is a bundle operand.
bool isConvergent() const
Determine if the invoke is convergent.
FunctionType * getFunctionType() const
LLVM_ABI Intrinsic::ID getIntrinsicID() const
Returns the intrinsic ID of the intrinsic called or Intrinsic::not_intrinsic if the called function i...
void setIsNoInline()
static unsigned CountBundleInputs(ArrayRef< OperandBundleDef > Bundles)
Return the total number of values used in Bundles.
LLVM_ABI Value * getArgOperandWithAttribute(Attribute::AttrKind Kind) const
If one of the arguments has the specified attribute, returns its operand value.
Value * getReturnedArgOperand() const
If one of the arguments has the 'returned' attribute, returns its operand value.
LLVM_ABI void setOnlyAccessesInaccessibleMemory()
static LLVM_ABI CallBase * Create(CallBase *CB, ArrayRef< OperandBundleDef > Bundles, InsertPosition InsertPt=nullptr)
Create a clone of CB with a different set of operand bundles and insert it before InsertPt.
LLVM_ABI bool onlyWritesMemory() const
Determine if the call does not access or only writes memory.
unsigned data_operands_size() const
void removeFnAttr(Attribute::AttrKind Kind)
Removes the attribute from the function.
uint64_t getRetDereferenceableOrNullBytes() const
Extract the number of dereferenceable_or_null bytes for a call (0=unknown).
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
unsigned getArgOperandNo(const Use *U) const
Given a use for a arg operand, get the arg operand number that corresponds to it.
bool isBundleOperand(Value::const_user_iterator UI) const
LLVM_ABI bool hasClobberingOperandBundles() const
Return true if this operand bundle user has operand bundles that may write to the heap.
static bool classof(const Value *V)
Value * getConvergenceControlToken() const
Return the convergence control token for this call, if it exists.
void setCalledOperand(Value *V)
void addParamAttrs(unsigned ArgNo, const AttrBuilder &B)
Adds attributes to the indicated argument.
static LLVM_ABI CallBase * removeOperandBundle(CallBase *CB, uint32_t ID, InsertPosition InsertPt=nullptr)
Create a clone of CB with operand bundle ID removed.
bool doesNotReturn() const
Determine if the call cannot return.
LLVM_ABI bool hasReadingOperandBundles() const
Return true if this operand bundle user has operand bundles that may read from the heap.
void removeFnAttr(StringRef Kind)
Removes the attribute from the function.
void setConvergent()
LLVM_ABI bool onlyAccessesArgMemory() const
Determine if the call can access memmory only using pointers based on its arguments.
unsigned arg_size() const
void addDereferenceableParamAttr(unsigned i, uint64_t Bytes)
adds the dereferenceable attribute to the list of attributes.
AttributeList getAttributes() const
Return the attributes for this call.
std::optional< OperandBundleUse > getOperandBundle(uint32_t ID) const
Return an operand bundle by tag ID, if present.
void addRetAttr(Attribute Attr)
Adds the attribute to the return value.
void addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind)
Adds the attribute to the indicated argument.
iterator_range< User::const_op_iterator > data_ops() const
Instruction(const Instruction &)=delete
bool isArgOperand(const Use *U) const
bool isDataOperand(const Use *U) const
bool hasDeoptState() const
Return true if the call has deopt state bundle.
LLVM_ABI void setMemoryEffects(MemoryEffects ME)
bool hasOperandBundles() const
Return true if this User has any operand bundles.
void setCalledFunction(Function *Fn)
Sets the function called, including updating the function type.
const_bundle_op_iterator bundle_op_info_end() const
Return the end of the list of BundleOpInfo instances associated with this OperandBundleUser.
bool isPassPointeeByValueArgument(unsigned ArgNo) const
Determine whether this argument is passed by value, in an alloca, or is preallocated.
LLVM_ABI bool isTailCall() const
Tests if this call site is marked as a tail call.
const Function * getCaller() const
void removeParamAttr(unsigned ArgNo, StringRef Kind)
Removes the attribute from the given argument.
User::const_op_iterator arg_end() const
LLVM_ABI Function * getCaller()
Helper to get the caller (the parent function).
bool tryIntersectAttributes(const CallBase *Other)
Try to intersect the attributes from 'this' CallBase and the 'Other' CallBase.
const BundleOpInfo * const_bundle_op_iterator
unsigned getNumTotalBundleOperands() const
Return the total number operands (not operand bundles) used by every operand bundle in this OperandBu...
Attribute getAttributeAtIndex(unsigned i, StringRef Kind) const
Get the attribute of a given kind at a position.
Represents which components of the pointer may be captured in which location.
Definition ModRef.h:354
This is the base class for all instructions that perform data casts.
Definition InstrTypes.h:448
Type * getSrcTy() const
Return the source type, as a convenience.
Definition InstrTypes.h:615
static LLVM_ABI Instruction::CastOps getCastOpcode(const Value *Val, bool SrcIsSigned, Type *Ty, bool DstIsSigned)
Returns the opcode necessary to cast Val into Ty using usual casting rules.
static LLVM_ABI CastInst * CreatePointerBitCastOrAddrSpaceCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a BitCast or an AddrSpaceCast cast instruction.
Instruction::CastOps getOpcode() const
Return the opcode of this CastInst.
Definition InstrTypes.h:610
static LLVM_ABI unsigned isEliminableCastPair(Instruction::CastOps firstOpcode, Instruction::CastOps secondOpcode, Type *SrcTy, Type *MidTy, Type *DstTy, const DataLayout *DL)
Determine how a pair of casts can be eliminated, if they can be at all.
static bool classof(const Value *V)
Definition InstrTypes.h:633
static LLVM_ABI CastInst * CreateIntegerCast(Value *S, Type *Ty, bool isSigned, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a ZExt, BitCast, or Trunc for int -> int casts.
static LLVM_ABI CastInst * CreateFPCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create an FPExt, BitCast, or FPTrunc for fp -> fp casts.
CastInst(Type *Ty, unsigned iType, Value *S, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructor with insert-before-instruction semantics for subclasses.
Definition InstrTypes.h:451
static LLVM_ABI bool isBitOrNoopPointerCastable(Type *SrcTy, Type *DestTy, const DataLayout &DL)
Check whether a bitcast, inttoptr, or ptrtoint cast between these types is valid and a no-op.
static bool castIsValid(Instruction::CastOps op, Value *S, Type *DstTy)
Definition InstrTypes.h:625
static LLVM_ABI bool isBitCastable(Type *SrcTy, Type *DestTy)
Check whether a bitcast between these types is valid.
static LLVM_ABI CastInst * CreateTruncOrBitCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a Trunc or BitCast cast instruction.
static LLVM_ABI CastInst * CreatePointerCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a BitCast, AddrSpaceCast or a PtrToInt cast instruction.
static LLVM_ABI CastInst * CreateBitOrPointerCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a BitCast, a PtrToInt, or an IntToPTr cast instruction.
static LLVM_ABI bool isNoopCast(Instruction::CastOps Opcode, Type *SrcTy, Type *DstTy, const DataLayout &DL)
A no-op cast is one that can be effected without changing any bits.
static LLVM_ABI CastInst * CreateZExtOrBitCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a ZExt or BitCast cast instruction.
static LLVM_ABI CastInst * Create(Instruction::CastOps, Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Provides a way to construct any of the CastInst subclasses using an opcode instead of the subclass's ...
LLVM_ABI bool isIntegerCast() const
There are several places where we need to know if a cast instruction only deals with integer source a...
Type * getDestTy() const
Return the destination type, as a convenience.
Definition InstrTypes.h:617
static LLVM_ABI CastInst * CreateSExtOrBitCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a SExt or BitCast cast instruction.
static LLVM_ABI bool castIsValid(Instruction::CastOps op, Type *SrcTy, Type *DstTy)
This method can be used to determine if a cast from SrcTy to DstTy using Opcode op is valid or not.
static bool classof(const Instruction *I)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition InstrTypes.h:630
This class is the base class for the comparison instructions.
Definition InstrTypes.h:664
static Type * makeCmpResultType(Type *opnd_type)
Create a result type for fcmp/icmp.
Definition InstrTypes.h:982
Predicate getStrictPredicate() const
For example, SGE -> SGT, SLE -> SLT, ULE -> ULT, UGE -> UGT.
Definition InstrTypes.h:858
bool isEquality() const
Determine if this is an equals/not equals predicate.
Definition InstrTypes.h:915
void setPredicate(Predicate P)
Set the predicate for this instruction to the specified value.
Definition InstrTypes.h:768
bool isFalseWhenEqual() const
This is just a convenience.
Definition InstrTypes.h:948
static bool classof(const Instruction *I)
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition InstrTypes.h:973
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
Definition InstrTypes.h:676
@ FCMP_OEQ
0 0 0 1 True if ordered and equal
Definition InstrTypes.h:679
@ FCMP_TRUE
1 1 1 1 Always true (always folded)
Definition InstrTypes.h:693
@ ICMP_SLT
signed less than
Definition InstrTypes.h:705
@ ICMP_SLE
signed less or equal
Definition InstrTypes.h:706
@ FCMP_OLT
0 1 0 0 True if ordered and less than
Definition InstrTypes.h:682
@ FCMP_ULE
1 1 0 1 True if unordered, less than, or equal
Definition InstrTypes.h:691
@ FCMP_OGT
0 0 1 0 True if ordered and greater than
Definition InstrTypes.h:680
@ FCMP_OGE
0 0 1 1 True if ordered and greater than or equal
Definition InstrTypes.h:681
@ ICMP_UGE
unsigned greater or equal
Definition InstrTypes.h:700
@ ICMP_UGT
unsigned greater than
Definition InstrTypes.h:699
@ ICMP_SGT
signed greater than
Definition InstrTypes.h:703
@ FCMP_ULT
1 1 0 0 True if unordered or less than
Definition InstrTypes.h:690
@ FCMP_ONE
0 1 1 0 True if ordered and operands are unequal
Definition InstrTypes.h:684
@ FCMP_UEQ
1 0 0 1 True if unordered or equal
Definition InstrTypes.h:687
@ ICMP_ULT
unsigned less than
Definition InstrTypes.h:701
@ FCMP_UGT
1 0 1 0 True if unordered or greater than
Definition InstrTypes.h:688
@ FCMP_OLE
0 1 0 1 True if ordered and less than or equal
Definition InstrTypes.h:683
@ FCMP_ORD
0 1 1 1 True if ordered (no nans)
Definition InstrTypes.h:685
@ ICMP_NE
not equal
Definition InstrTypes.h:698
@ ICMP_SGE
signed greater or equal
Definition InstrTypes.h:704
@ FCMP_UNE
1 1 1 0 True if unordered or not equal
Definition InstrTypes.h:692
@ ICMP_ULE
unsigned less or equal
Definition InstrTypes.h:702
@ FCMP_UGE
1 0 1 1 True if unordered, greater than, or equal
Definition InstrTypes.h:689
@ FCMP_FALSE
0 0 0 0 Always false (always folded)
Definition InstrTypes.h:678
@ FCMP_UNO
1 0 0 0 True if unordered: isnan(X) | isnan(Y)
Definition InstrTypes.h:686
static auto ICmpPredicates()
Returns the sequence of all ICmp predicates.
Definition InstrTypes.h:722
LLVM_ABI bool isEquivalence(bool Invert=false) const
Determine if one operand of this compare can always be replaced by the other operand,...
bool isSigned() const
Definition InstrTypes.h:930
Predicate getSwappedPredicate() const
For example, EQ->EQ, SLE->SGE, ULT->UGT, OEQ->OEQ, ULE->UGE, OLT->OGT, etc.
Definition InstrTypes.h:827
static auto FCmpPredicates()
Returns the sequence of all FCmp predicates.
Definition InstrTypes.h:715
Bitfield::Element< Predicate, 0, 6, LAST_ICMP_PREDICATE > PredicateField
Definition InstrTypes.h:711
bool isTrueWhenEqual() const
This is just a convenience.
Definition InstrTypes.h:942
static LLVM_ABI CmpInst * Create(OtherOps Op, Predicate Pred, Value *S1, Value *S2, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Construct a compare instruction, given the opcode, the predicate and the two operands.
Predicate getOrderedPredicate() const
Definition InstrTypes.h:800
static bool isFPPredicate(Predicate P)
Definition InstrTypes.h:770
Predicate getNonStrictPredicate() const
For example, SGT -> SGE, SLT -> SLE, ULT -> ULE, UGT -> UGE.
Definition InstrTypes.h:871
static LLVM_ABI CmpInst * CreateWithCopiedFlags(OtherOps Op, Predicate Pred, Value *S1, Value *S2, const Instruction *FlagsSource, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Construct a compare instruction, given the opcode, the predicate, the two operands and the instructio...
bool isNonStrictPredicate() const
Definition InstrTypes.h:852
bool isFPPredicate() const
Definition InstrTypes.h:782
LLVM_ABI void swapOperands()
This is just a convenience that dispatches to the subclasses.
static bool isRelational(Predicate P)
Return true if the predicate is relational (not EQ or NE).
Definition InstrTypes.h:923
Predicate getInversePredicate() const
For example, EQ -> NE, UGT -> ULE, SLT -> SGE, OEQ -> UNE, UGT -> OLE, OLT -> UGE,...
Definition InstrTypes.h:789
static LLVM_ABI StringRef getPredicateName(Predicate P)
Predicate getPredicate() const
Return the predicate for this instruction.
Definition InstrTypes.h:765
bool isStrictPredicate() const
Definition InstrTypes.h:843
static LLVM_ABI bool isUnordered(Predicate predicate)
Determine if the predicate is an unordered operation.
Predicate getFlippedStrictnessPredicate() const
For predicate of kind "is X or equal to 0" returns the predicate "is X".
Definition InstrTypes.h:893
static Predicate getOrderedPredicate(Predicate Pred)
Returns the ordered variant of a floating point compare.
Definition InstrTypes.h:796
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Provide more efficient getOperand methods.
bool isIntPredicate() const
Definition InstrTypes.h:783
static bool isIntPredicate(Predicate P)
Definition InstrTypes.h:776
Predicate getUnorderedPredicate() const
Definition InstrTypes.h:811
static LLVM_ABI bool isOrdered(Predicate predicate)
Determine if the predicate is an ordered operation.
LLVM_ABI CmpInst(Type *ty, Instruction::OtherOps op, Predicate pred, Value *LHS, Value *RHS, const Twine &Name="", InsertPosition InsertBefore=nullptr, Instruction *FlagsSource=nullptr)
static bool classof(const Value *V)
Definition InstrTypes.h:977
bool isUnsigned() const
Definition InstrTypes.h:936
static Predicate getUnorderedPredicate(Predicate Pred)
Returns the unordered variant of a floating point compare.
Definition InstrTypes.h:807
OtherOps getOpcode() const
Get the opcode casted to the right type.
Definition InstrTypes.h:760
LLVM_ABI bool isCommutative() const
This is just a convenience that dispatches to the subclasses.
bool isRelational() const
Return true if the predicate is relational (not EQ or NE).
Definition InstrTypes.h:926
This class represents a range of values.
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:63
This provides a helper for copying FMF from an instruction or setting specified flags.
Definition IRBuilder.h:93
Convenience struct for specifying and reasoning about fast-math flags.
Definition FMF.h:22
static bool classof(const Instruction *I)
op_range arg_operands()
arg_operands - iteration adapter for range-for loops.
void setArgOperand(unsigned i, Value *v)
unsigned arg_size() const
arg_size - Return the number of funcletpad arguments.
static bool classof(const Value *V)
void setParentPad(Value *ParentPad)
friend class CatchPadInst
friend class Instruction
Iterator for Instructions in a `BasicBlock.
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Provide fast operand accessors.
Value * getParentPad() const
Convenience accessors.
LLVM_ABI FuncletPadInst * cloneImpl() const
friend class CleanupPadInst
const_op_range arg_operands() const
arg_operands - iteration adapter for range-for loops.
Value * getArgOperand(unsigned i) const
getArgOperand/setArgOperand - Return/set the i-th funcletpad argument.
A handy container for a FunctionType+Callee-pointer pair, which can be passed around as a single enti...
FunctionType * getFunctionType()
Class to represent function types.
FunctionType * getFunctionType() const
Returns the FunctionType for me.
Definition Function.h:209
BitfieldElement::Type getSubclassData() const
LLVM_ABI void setHasNoUnsignedWrap(bool b=true)
Set or clear the nuw flag on this instruction, which must be an operator which supports this flag.
LLVM_ABI void copyIRFlags(const Value *V, bool IncludeWrapFlags=true)
Convenience method to copy supported exact, fast-math, and (optionally) wrapping flags from V to this...
LLVM_ABI void setHasNoSignedWrap(bool b=true)
Set or clear the nsw flag on this instruction, which must be an operator which supports this flag.
LLVM_ABI void setFastMathFlags(FastMathFlags FMF)
Convenience function for setting multiple fast-math flags on this instruction, which must be an opera...
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
LLVM_ABI void setIsExact(bool b=true)
Set or clear the exact flag on this instruction, which must be an operator which supports this flag.
Instruction(const Instruction &)=delete
void setSubclassData(typename BitfieldElement::Type Value)
A container for an operand bundle being viewed as a set of values rather than a set of uses.
size_t input_size() const
input_iterator input_end() const
OperandBundleDefT(const OperandBundleUse &OBU)
ArrayRef< InputTy > inputs() const
typename std::vector< Value * >::const_iterator input_iterator
OperandBundleDefT(std::string Tag, std::vector< InputTy > Inputs)
input_iterator input_begin() const
StringRef getTag() const
OperandBundleDefT(std::string Tag, ArrayRef< InputTy > Inputs)
An or instruction, which can be marked as "disjoint", indicating that the inputs don't have a 1 in th...
Definition InstrTypes.h:404
static bool classof(const Value *V)
Definition InstrTypes.h:419
static bool classof(const Instruction *I)
Definition InstrTypes.h:415
Instruction that can have a nneg flag (zext/uitofp).
Definition InstrTypes.h:639
static bool classof(const Instruction *I)
Definition InstrTypes.h:643
static bool classof(const Value *V)
Definition InstrTypes.h:653
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
StringMapEntry - This is used to represent one value that is inserted into a StringMap.
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:45
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
Definition Type.h:128
static LLVM_ABI IntegerType * getInt1Ty(LLVMContext &C)
Definition Type.cpp:294
static bool classof(const Instruction *I)
Definition InstrTypes.h:77
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Transparently provide more efficient getOperand methods.
static bool classof(const Value *V)
Definition InstrTypes.h:85
UnaryInstruction(Type *Ty, unsigned iType, Value *V, InsertPosition InsertBefore=nullptr)
Definition InstrTypes.h:62
static LLVM_ABI UnaryOperator * Create(UnaryOps Op, Value *S, const Twine &Name=Twine(), InsertPosition InsertBefore=nullptr)
Construct a unary instruction, given the opcode and an operand.
LLVM_ABI UnaryOperator(UnaryOps iType, Value *S, Type *Ty, const Twine &Name, InsertPosition InsertBefore)
LLVM_ABI UnaryOperator * cloneImpl() const
static UnaryOperator * CreateWithCopiedFlags(UnaryOps Opc, Value *V, Instruction *CopyO, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Definition InstrTypes.h:139
UnaryOps getOpcode() const
Definition InstrTypes.h:154
friend class Instruction
Iterator for Instructions in a `BasicBlock.
Definition InstrTypes.h:109
static UnaryOperator * CreateFNegFMF(Value *Op, Instruction *FMFSource, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Definition InstrTypes.h:147
static bool classof(const Value *V)
Definition InstrTypes.h:162
static bool classof(const Instruction *I)
Definition InstrTypes.h:159
A Use represents the edge between a Value definition and its users.
Definition Use.h:35
iterator_range< const_op_iterator > const_op_range
Definition User.h:282
Use * op_iterator
Definition User.h:279
LLVM_ABI ArrayRef< const uint8_t > getDescriptor() const
Returns the descriptor co-allocated with this User instance.
Definition User.cpp:99
op_iterator op_begin()
Definition User.h:284
const Use & getOperandUse(unsigned i) const
Definition User.h:245
void setOperand(unsigned i, Value *Val)
Definition User.h:237
const Use * const_op_iterator
Definition User.h:280
iterator_range< op_iterator > op_range
Definition User.h:281
Value * getOperand(unsigned i) const
Definition User.h:232
unsigned getNumOperands() const
Definition User.h:254
op_iterator op_end()
Definition User.h:286
LLVM Value Representation.
Definition Value.h:75
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:256
user_iterator_impl< const User > const_user_iterator
Definition Value.h:392
unsigned char SubclassOptionalData
Hold subclass data that can be dropped.
Definition Value.h:85
LLVM_ABI void setName(const Twine &Name)
Change the name of the value.
Definition Value.cpp:390
void setValueSubclassData(unsigned short D)
Definition Value.h:890
LLVM_ABI LLVMContext & getContext() const
All values hold a context through their type.
Definition Value.cpp:1099
void mutateType(Type *Ty)
Mutate the type of this Value to be of the specified type.
Definition Value.h:838
unsigned HasDescriptor
Definition Value.h:116
Base class of all SIMD vector types.
static LLVM_ABI VectorType * get(Type *ElementType, ElementCount EC)
This static method is the primary way to construct an VectorType.
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
@ MaxID
The highest possible ID. Must be some 2^k - 1.
This namespace contains an enum with a value for every intrinsic/builtin function known by LLVM.
This is an optimization pass for GlobalISel generic memory operations.
auto enum_seq_inclusive(EnumT Begin, EnumT End)
Iterate over an enum type from Begin to End inclusive.
Definition Sequence.h:364
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:644
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Definition STLExtras.h:2138
constexpr force_iteration_on_noniterable_enum_t force_iteration_on_noniterable_enum
Definition Sequence.h:108
MemoryEffectsBase< IRMemLocation > MemoryEffects
Summary of how a function affects memory in the program.
Definition ModRef.h:296
auto dyn_cast_or_null(const Y &Val)
Definition Casting.h:754
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
FunctionAddr VTableAddr Count
Definition InstrProf.h:139
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:548
@ Other
Any other memory.
Definition ModRef.h:68
OperandBundleDefT< Value * > OperandBundleDef
Definition AutoUpgrade.h:34
@ Or
Bitwise or logical OR of integers.
@ Sub
Subtraction of integers.
@ Add
Sum of integers.
DWARFExpression::Operation Op
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1869
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:560
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition STLExtras.h:1899
bool capturesNothing(CaptureComponents CC)
Definition ModRef.h:315
OperandBundleDefT< const Value * > ConstOperandBundleDef
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:867
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Describes an element of a Bitfield.
Definition Bitfields.h:223
static constexpr unsigned NextBit
Definition Bitfields.h:231
static constexpr bool areContiguous()
Definition Bitfields.h:280
Used to keep track of an operand bundle.
bool operator==(const BundleOpInfo &Other) const
StringMapEntry< uint32_t > * Tag
The operand bundle tag, interned by LLVMContextImpl::getOrInsertBundleTag.
uint32_t End
The index in the Use& vector where operands for this operand bundle ends.
uint32_t Begin
The index in the Use& vector where operands for this operand bundle starts.
FixedNumOperandTraits - determine the allocation regime of the Use array when it is a prefix to the U...
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Definition Alignment.h:106
A lightweight accessor for an operand bundle meant to be passed around by value.
bool isFuncletOperandBundle() const
Return true if this is a "funclet" operand bundle.
StringRef getTagName() const
Return the tag of this operand bundle as a string.
bool isDeoptOperandBundle() const
Return true if this is a "deopt" operand bundle.
OperandBundleUse(StringMapEntry< uint32_t > *Tag, ArrayRef< Use > Inputs)
uint32_t getTagID() const
Return the tag of this operand bundle as an integer.
ArrayRef< Use > Inputs
bool operandHasAttr(unsigned Idx, Attribute::AttrKind A) const
Return true if the operand at index Idx in this operand bundle has the attribute A.
bool isCFGuardTargetOperandBundle() const
Return true if this is a "cfguardtarget" operand bundle.
Compile-time customization of User operands.
Definition User.h:42
Information about how a User object was allocated, to be passed into the User constructor.
Definition User.h:79
Indicates this User has operands co-allocated.
Definition User.h:60
VariadicOperandTraits - determine the allocation regime of the Use array when it is a prefix to the U...