14#ifndef LLVM_IR_OPERATOR_H
15#define LLVM_IR_OPERATOR_H
39 void *
operator new(
size_t s) =
delete;
44 return I->getOpcode();
45 return cast<ConstantExpr>(
this)->getOpcode();
52 return I->getOpcode();
54 return CE->getOpcode();
55 return Instruction::UserOp1;
61 return isa<Instruction>(V) || isa<ConstantExpr>(V);
89 void setHasNoUnsignedWrap(
bool B) {
93 void setHasNoSignedWrap(
bool B) {
116 unsigned NoWrapKind = 0;
127 return I->getOpcode() == Instruction::Add ||
128 I->getOpcode() == Instruction::Sub ||
129 I->getOpcode() == Instruction::Mul ||
130 I->getOpcode() == Instruction::Shl;
133 return CE->getOpcode() == Instruction::Add ||
134 CE->getOpcode() == Instruction::Sub ||
135 CE->getOpcode() == Instruction::Mul ||
136 CE->getOpcode() == Instruction::Shl;
139 return (isa<Instruction>(V) &&
classof(cast<Instruction>(V))) ||
140 (isa<ConstantExpr>(V) &&
classof(cast<ConstantExpr>(V)));
162 void setIsExact(
bool B) {
163 SubclassOptionalData = (SubclassOptionalData & ~IsExact) | (
B * IsExact);
172 return SubclassOptionalData & IsExact;
176 return OpC == Instruction::SDiv ||
177 OpC == Instruction::UDiv ||
178 OpC == Instruction::AShr ||
179 OpC == Instruction::LShr;
183 return isPossiblyExactOpcode(CE->getOpcode());
186 return isPossiblyExactOpcode(
I->getOpcode());
189 return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
190 (isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
207 void setFast(
bool B) {
208 setHasAllowReassoc(
B);
211 setHasNoSignedZeros(
B);
212 setHasAllowReciprocal(
B);
213 setHasAllowContract(
B);
217 void setHasAllowReassoc(
bool B) {
218 SubclassOptionalData =
223 void setHasNoNaNs(
bool B) {
224 SubclassOptionalData =
225 (SubclassOptionalData & ~FastMathFlags::NoNaNs) |
229 void setHasNoInfs(
bool B) {
230 SubclassOptionalData =
231 (SubclassOptionalData & ~FastMathFlags::NoInfs) |
235 void setHasNoSignedZeros(
bool B) {
236 SubclassOptionalData =
237 (SubclassOptionalData & ~FastMathFlags::NoSignedZeros) |
241 void setHasAllowReciprocal(
bool B) {
242 SubclassOptionalData =
243 (SubclassOptionalData & ~FastMathFlags::AllowReciprocal) |
247 void setHasAllowContract(
bool B) {
248 SubclassOptionalData =
249 (SubclassOptionalData & ~FastMathFlags::AllowContract) |
253 void setHasApproxFunc(
bool B) {
254 SubclassOptionalData =
255 (SubclassOptionalData & ~FastMathFlags::ApproxFunc) |
261 void setFastMathFlags(FastMathFlags FMF) {
262 SubclassOptionalData |= FMF.Flags;
267 void copyFastMathFlags(FastMathFlags FMF) {
268 SubclassOptionalData = FMF.Flags;
327 float getFPAccuracy()
const;
331 if (
auto *
I = dyn_cast<Instruction>(V))
332 Opcode =
I->getOpcode();
337 case Instruction::FNeg:
338 case Instruction::FAdd:
339 case Instruction::FSub:
340 case Instruction::FMul:
341 case Instruction::FDiv:
342 case Instruction::FRem:
348 case Instruction::FCmp:
350 case Instruction::PHI:
351 case Instruction::Select:
352 case Instruction::Call: {
353 Type *Ty = V->getType();
354 while (
ArrayType *ArrTy = dyn_cast<ArrayType>(Ty))
355 Ty = ArrTy->getElementType();
365template<
typename SuperClass,
unsigned Opc>
369 return I->getOpcode() == Opc;
372 return CE->getOpcode() == Opc;
375 return (isa<Instruction>(V) &&
classof(cast<Instruction>(V))) ||
376 (isa<ConstantExpr>(V) &&
classof(cast<ConstantExpr>(V)));
423 std::optional<ConstantRange>
getInRange()
const;
487 if (!isa<ConstantInt>(
I))
495 return !isa<ConstantInt>(*
use);
532 APInt &ConstantOffset)
const;
543 friend class PtrToInt;
551 return getOperand(0);
554 return getOperand(0);
568 return cast<PointerType>(getPointerOperandType())->getAddressSpace();
588 return getOperand(0)->getType();
620 return getType()->getPointerAddressSpace();
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
Move duplicate certain instructions close to their use
This file implements a map that provides insertion order iteration.
#define DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CLASS, VALUECLASS)
Macro for generating out-of-class operand accessor definitions.
static SymbolRef::Type getType(const Symbol *Sym)
Class for arbitrary precision integers.
This class represents a conversion between pointers from one address space to another.
const Value * getPointerOperand() const
unsigned getDestAddressSpace() const
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Transparently provide more efficient getOperand methods.
unsigned getSrcAddressSpace() const
Value * getPointerOperand()
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Class to represent array types.
This class represents a no-op cast from one type to another.
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Transparently provide more efficient getOperand methods.
A helper template for defining operators for individual opcodes.
static bool classof(const Value *V)
static bool classof(const ConstantExpr *CE)
static bool classof(const Instruction *I)
A constant value that is initialized with an expression using other constant values.
This is the shared class of boolean and integer constants.
A parsed version of the target data layout string in and methods for querying it.
Utility class for floating point operations which can have information about relaxed accuracy require...
bool hasAllowReassoc() const
Test if this operation may be simplified with reassociative transforms.
bool isFast() const
Test if this operation allows all non-strict floating-point transforms.
static bool classof(const Value *V)
bool hasNoNaNs() const
Test if this operation's arguments and results are assumed not-NaN.
FastMathFlags getFastMathFlags() const
Convenience function for getting all the fast-math flags.
bool hasAllowReciprocal() const
Test if this operation can use reciprocal multiply instead of division.
bool hasNoSignedZeros() const
Test if this operation can ignore the sign of zero.
bool hasAllowContract() const
Test if this operation can be floating-point contracted (FMA).
bool hasNoInfs() const
Test if this operation's arguments and results are assumed not-infinite.
bool hasApproxFunc() const
Test if this operation allows approximations of math library functions or intrinsics.
Convenience struct for specifying and reasoning about fast-math flags.
Represents flags for the getelementptr instruction/expression.
static GEPNoWrapFlags fromRaw(unsigned Flags)
bool hasNoUnsignedSignedWrap() const
bool hasNoUnsignedWrap() const
bool hasNoUnsignedSignedWrap() const
bool collectOffset(const DataLayout &DL, unsigned BitWidth, MapVector< Value *, APInt > &VariableOffsets, APInt &ConstantOffset) const
Collect the offset of this GEP as a map of Values to their associated APInt multipliers,...
const_op_iterator idx_end() const
const Value * getPointerOperand() const
const_op_iterator idx_begin() const
bool isInBounds() const
Test whether this is an inbounds GEP, as defined by LangRef.html.
Type * getPointerOperandType() const
Method to return the pointer operand as a PointerType.
unsigned getNumIndices() const
std::optional< ConstantRange > getInRange() const
Returns the offset of the index with an inrange attachment, or std::nullopt if none.
unsigned countNonConstantIndices() const
Type * getSourceElementType() const
Type * getResultElementType() const
bool accumulateConstantOffset(const DataLayout &DL, APInt &Offset, function_ref< bool(Value &, APInt &)> ExternalAnalysis=nullptr) const
Accumulate the constant address offset of this GEP if possible.
bool hasNoUnsignedWrap() const
bool hasAllZeroIndices() const
Return true if all of the indices of this GEP are zeros.
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Transparently provide more efficient getOperand methods.
Value * getPointerOperand()
GEPNoWrapFlags getNoWrapFlags() const
bool hasAllConstantIndices() const
Return true if all of the indices of this GEP are constant integers.
iterator_range< op_iterator > indices()
iterator_range< const_op_iterator > indices() const
Align getMaxPreservedAlignment(const DataLayout &DL) const
Compute the maximum alignment that this GEP is garranteed to preserve.
unsigned getPointerAddressSpace() const
Method to return the address space of the pointer operand.
static unsigned getPointerOperandIndex()
This class implements a map that also provides access to all stored values in a deterministic order.
This is a utility class that provides an abstraction for the common functionality between Instruction...
static bool classof(const ConstantExpr *)
bool hasPoisonGeneratingAnnotations() const
Return true if this operator has poison-generating flags, return attributes or metadata.
bool hasPoisonGeneratingFlags() const
Return true if this operator has flags which may cause this operator to evaluate to poison despite ha...
static bool classof(const Instruction *)
unsigned getOpcode() const
Return the opcode for this Instruction or ConstantExpr.
static bool classof(const Value *V)
static unsigned getOpcode(const Value *V)
If V is an Instruction or ConstantExpr, return its opcode.
Utility class for integer operators which may exhibit overflow - Add, Sub, Mul, and Shl.
static bool classof(const Value *V)
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Transparently provide more efficient getOperand methods.
bool hasNoSignedWrap() const
Test whether this operation is known to never undergo signed overflow, aka the nsw property.
unsigned getNoWrapKind() const
Returns the no-wrap kind of the operation.
bool hasNoUnsignedWrap() const
Test whether this operation is known to never undergo unsigned overflow, aka the nuw property.
static bool classof(const ConstantExpr *CE)
static bool classof(const Instruction *I)
A udiv or sdiv instruction, which can be marked as "exact", indicating that no bits are destroyed.
static bool classof(const ConstantExpr *CE)
bool isExact() const
Test whether this division is known to be exact, with zero remainder.
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Transparently provide more efficient getOperand methods.
static bool isPossiblyExactOpcode(unsigned OpC)
static bool classof(const Value *V)
static bool classof(const Instruction *I)
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Transparently provide more efficient getOperand methods.
Type * getPointerOperandType() const
Method to return the pointer operand as a PointerType.
static unsigned getPointerOperandIndex()
unsigned getPointerAddressSpace() const
Method to return the address space of the pointer operand.
const Value * getPointerOperand() const
Value * getPointerOperand()
The instances of the Type class are immutable: once they are created, they are never changed.
unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
A Use represents the edge between a Value definition and its users.
Value * getOperand(unsigned i) const
unsigned getNumOperands() const
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
unsigned char SubclassOptionalData
Hold subclass data that can be dropped.
An efficient, type-erasing, non-owning reference to a callable.
A range adaptor for a pair of iterators.
@ C
The default llvm calling convention, compatible with C.
This is an optimization pass for GlobalISel generic memory operations.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
const Value * getPointerOperand(const Value *V)
A helper function that returns the pointer operand of a load, store or GEP instruction.
constexpr unsigned BitWidth
auto count_if(R &&Range, UnaryPredicate P)
Wrapper function around std::count_if to count the number of times an element satisfying a given pred...
This struct is a compact representation of a valid (non-zero power of two) alignment.
FixedNumOperandTraits - determine the allocation regime of the Use array when it is a prefix to the U...
Compile-time customization of User operands.
VariadicOperandTraits - determine the allocation regime of the Use array when it is a prefix to the U...