14#ifndef LLVM_LIB_IR_CONSTANTSCONTEXT_H
15#define LLVM_LIB_IR_CONSTANTSCONTEXT_H
40#define DEBUG_TYPE "ir"
56 void *
operator new(
size_t S) {
return User::operator
new(S, AllocMarker); }
57 void operator delete(
void *Ptr) { User::operator
delete(Ptr, AllocMarker); }
84 void *
operator new(
size_t S) {
return User::operator
new(S, AllocMarker); }
85 void operator delete(
void *Ptr) { User::operator
delete(Ptr, AllocMarker); }
113 void *
operator new(
size_t S) {
return User::operator
new(S, AllocMarker); }
114 void operator delete(
void *Ptr) { User::operator
delete(Ptr, AllocMarker); }
120 return CE->getOpcode() == Instruction::ExtractElement;
142 void *
operator new(
size_t S) {
return User::operator
new(S, AllocMarker); }
143 void operator delete(
void *Ptr) { User::operator
delete(Ptr, AllocMarker); }
149 return CE->getOpcode() == Instruction::InsertElement;
169 "Invalid shuffle vector instruction operands!");
180 void *
operator new(
size_t S) {
return User::operator
new(S, AllocMarker); }
181 void operator delete(
void *Ptr) {
182 return User::operator
delete(Ptr, AllocMarker);
189 return CE->getOpcode() == Instruction::ShuffleVector;
201 std::optional<ConstantRange> InRange;
205 std::optional<ConstantRange> InRange,
209 static GetElementPtrConstantExpr *
211 Type *DestTy,
unsigned Flags, std::optional<ConstantRange> InRange) {
213 GetElementPtrConstantExpr *Result =
new (AllocMarker)
214 GetElementPtrConstantExpr(SrcElementTy,
C, IdxList, DestTy,
215 std::move(InRange), AllocMarker);
216 Result->SubclassOptionalData = Flags;
222 std::optional<ConstantRange>
getInRange()
const;
228 return CE->getOpcode() == Instruction::GetElementPtr;
307 assert(Storage.
empty() &&
"Expected empty storage");
308 Storage.
reserve(
C->getNumOperands());
309 for (
unsigned I = 0,
E =
C->getNumOperands();
I !=
E; ++
I)
319 if (
Operands.size() !=
C->getNumOperands())
333 return new (AllocMarker) ConstantClass(Ty,
Operands, AllocMarker);
372 FTy == Asm->getFunctionType() &&
CanThrow == Asm->canThrow();
396 std::optional<ConstantRange> InRange;
399 if (CE->getOpcode() == Instruction::ShuffleVector)
400 return CE->getShuffleMask();
406 return GEPCE->getSourceElementType();
410 static std::optional<ConstantRange>
413 return GEPCE->getInRange();
419 unsigned short SubclassOptionalData = 0,
421 Type *ExplicitTy =
nullptr,
422 std::optional<ConstantRange>
InRange = std::nullopt)
423 : Opcode(Opcode), SubclassOptionalData(SubclassOptionalData),
Ops(
Ops),
424 ShuffleMask(ShuffleMask), ExplicitTy(ExplicitTy),
429 SubclassOptionalData(CE->getRawSubclassOptionalData()), Ops(Operands),
430 ShuffleMask(getShuffleMaskIfValid(CE)),
431 ExplicitTy(getSourceElementTypeIfValid(CE)),
432 InRange(getInRangeIfValid(CE)) {}
437 SubclassOptionalData(CE->getRawSubclassOptionalData()),
438 ShuffleMask(getShuffleMaskIfValid(CE)),
439 ExplicitTy(getSourceElementTypeIfValid(CE)),
440 InRange(getInRangeIfValid(CE)) {
441 assert(Storage.
empty() &&
"Expected empty storage");
442 for (
unsigned I = 0,
E = CE->getNumOperands();
I !=
E; ++
I)
448 const std::optional<ConstantRange> &
B) {
449 if (!
A.has_value() || !
B.has_value())
450 return A.has_value() ==
B.has_value();
451 return A->getBitWidth() ==
B->getBitWidth() &&
A ==
B;
455 return Opcode ==
X.Opcode &&
456 SubclassOptionalData ==
X.SubclassOptionalData && Ops ==
X.Ops &&
457 ShuffleMask ==
X.ShuffleMask && ExplicitTy ==
X.ExplicitTy &&
462 if (Opcode != CE->getOpcode())
464 if (SubclassOptionalData != CE->getRawSubclassOptionalData())
466 if (Ops.size() != CE->getNumOperands())
468 for (
unsigned I = 0,
E = Ops.size();
I !=
E; ++
I)
469 if (Ops[
I] != CE->getOperand(
I))
471 if (ShuffleMask != getShuffleMaskIfValid(CE))
473 if (ExplicitTy != getSourceElementTypeIfValid(CE))
494 SubclassOptionalData);
496 case Instruction::ExtractElement:
498 case Instruction::InsertElement:
500 case Instruction::ShuffleVector:
502 case Instruction::GetElementPtr:
504 ExplicitTy, Ops[0], Ops.slice(1), Ty, SubclassOptionalData, InRange);
519 assert(Storage.
empty() &&
"Expected empty storage");
520 for (
unsigned I = 0,
E =
C->getNumOperands();
I !=
E; ++
I)
530 if (
Operands.size() !=
C->getNumOperands())
566 static inline ConstantClass *getEmptyKey() {
567 return ConstantClassInfo::getEmptyKey();
570 static inline ConstantClass *getTombstoneKey() {
571 return ConstantClassInfo::getTombstoneKey();
574 static unsigned getHashValue(
const ConstantClass *CP) {
579 static bool isEqual(
const ConstantClass *
LHS,
const ConstantClass *
RHS) {
583 static unsigned getHashValue(
const LookupKey &Val) {
592 if (
RHS == getEmptyKey() ||
RHS == getTombstoneKey())
594 if (
LHS.first !=
RHS->getType())
621 ConstantClass *Result = V.create(Ty);
623 assert(Result->getType() == Ty &&
"Type specified is not correct!");
624 Map.insert_as(Result, HashKey);
636 ConstantClass *Result =
nullptr;
640 Result = create(Ty, V,
Lookup);
643 assert(Result &&
"Unexpected nullptr");
651 assert(
I != Map.end() &&
"Constant not found in constant table!");
652 assert(*
I == CP &&
"Didn't find correct element?");
657 ConstantClass *CP,
Value *From,
658 Constant *To,
unsigned NumUpdated = 0,
659 unsigned OperandNo = ~0u) {
664 auto ItMap = Map.find_as(
Lookup);
665 if (ItMap != Map.end())
671 if (NumUpdated == 1) {
672 assert(OperandNo < CP->getNumOperands() &&
"Invalid index");
673 assert(CP->getOperand(OperandNo) != To &&
"I didn't contain From!");
674 CP->setOperand(OperandNo, To);
676 for (
unsigned I = 0,
E = CP->getNumOperands();
I !=
E; ++
I)
677 if (CP->getOperand(
I) == From)
678 CP->setOperand(
I, To);
680 Map.insert_as(CP,
Lookup);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file defines DenseMapInfo traits for DenseMap.
This file defines the DenseSet and SmallDenseSet classes.
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
static bool InRange(int64_t Value, unsigned short Shift, int LBound, int HBound)
#define DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CLASS, VALUECLASS)
Macro for generating out-of-class operand accessor definitions.
This file defines the SmallVector class.
static TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
static std::optional< unsigned > getOpcode(ArrayRef< VPValue * > Values)
Returns the opcode of Values or ~0 if they do not all agree.
static bool canThrow(const Value *V)
static int Lookup(ArrayRef< TableEntry > Table, unsigned Opcode)
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
Class to represent array types.
BinaryConstantExpr - This class is private to Constants.cpp, and is used behind the scenes to impleme...
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Transparently provide more efficient getOperand methods.
static bool classof(const ConstantExpr *CE)
static bool classof(const Value *V)
BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2, unsigned Flags)
CastConstantExpr - This class is private to Constants.cpp, and is used behind the scenes to implement...
static bool classof(const Value *V)
static bool classof(const ConstantExpr *CE)
CastConstantExpr(unsigned Opcode, Constant *C, Type *Ty)
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
ConstantArray - Constant Array Declarations.
A constant value that is initialized with an expression using other constant values.
ConstantExpr(Type *ty, unsigned Opcode, AllocInfo AllocInfo)
static LLVM_ABI Constant * get(unsigned Opcode, Constant *C1, Constant *C2, unsigned Flags=0, Type *OnlyIfReducedTy=nullptr)
get - Return a binary or shift operator constant expression, folding if possible.
A signed pointer, in the ptrauth sense.
typename ConstantInfo< ConstantClass >::ValType ValType
typename ConstantInfo< ConstantClass >::TypeClass TypeClass
ConstantClass * getOrCreate(TypeClass *Ty, ValType V)
Return the specified constant from the map, creating it if necessary.
std::pair< unsigned, LookupKey > LookupKeyHashed
Key and hash together, so that we compute the hash only once and reuse it.
void remove(ConstantClass *CP)
Remove this constant from the map.
ConstantClass * replaceOperandsInPlace(ArrayRef< Constant * > Operands, ConstantClass *CP, Value *From, Constant *To, unsigned NumUpdated=0, unsigned OperandNo=~0u)
DenseSet< ConstantClass *, MapInfo > MapTy
std::pair< TypeClass *, ValType > LookupKey
Constant Vector Declarations.
This is an important base class in LLVM.
Implements a dense probed hash-table based set.
Class to represent function types.
GetElementPtrConstantExpr - This class is private to Constants.cpp, and is used behind the scenes to ...
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Transparently provide more efficient getOperand methods.
std::optional< ConstantRange > getInRange() const
static bool classof(const ConstantExpr *CE)
Type * getResultElementType() const
Type * getSourceElementType() const
static bool classof(const Value *V)
static GetElementPtrConstantExpr * Create(Type *SrcElementTy, Constant *C, ArrayRef< Constant * > IdxList, Type *DestTy, unsigned Flags, std::optional< ConstantRange > InRange)
InsertElementConstantExpr - This class is private to Constants.cpp, and is used behind the scenes to ...
static bool classof(const ConstantExpr *CE)
InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3)
static bool classof(const Value *V)
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Transparently provide more efficient getOperand methods.
Class to represent pointers.
static PointerType * getUnqual(Type *ElementType)
This constructs a pointer to an object of the specified type in the default address space (address sp...
Class to represent scalable SIMD vectors.
ShuffleVectorConstantExpr - This class is private to Constants.cpp, and is used behind the scenes to ...
Constant * ShuffleMaskForBitcode
SmallVector< int, 4 > ShuffleMask
static bool classof(const ConstantExpr *CE)
ShuffleVectorConstantExpr(Constant *C1, Constant *C2, ArrayRef< int > Mask)
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value)
Transparently provide more efficient getOperand methods.
static bool classof(const Value *V)
static LLVM_ABI bool isValidOperands(const Value *V1, const Value *V2, const Value *Mask)
Return true if a shufflevector instruction can be formed with the specified operands.
static LLVM_ABI Constant * convertShuffleMaskForBitcode(ArrayRef< int > Mask, Type *ResultTy)
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void reserve(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
Class to represent struct types.
The instances of the Type class are immutable: once they are created, they are never changed.
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.
Base class of all SIMD vector types.
DenseSetIterator< false > iterator
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ C
The default llvm calling convention, compatible with C.
This is an optimization pass for GlobalISel generic memory operations.
bool isEqual(const GCNRPTracker::LiveRegSet &S1, const GCNRPTracker::LiveRegSet &S2)
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
void deleteConstant(Constant *C)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
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...
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
DWARFExpression::Operation Op
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
hash_code hash_combine(const Ts &...args)
Combine values into a single hash_code.
hash_code hash_combine_range(InputIteratorT first, InputIteratorT last)
Compute a hash_code for a sequence of values.
Implement std::hash so that hash_code can be used in STL containers.
bool operator==(const ConstantClass *C) const
ArrayRef< Constant * > Operands
ConstantAggrKeyType(ArrayRef< Constant * > Operands)
ConstantAggrKeyType(ArrayRef< Constant * > Operands, const ConstantClass *)
typename ConstantInfo< ConstantArray >::TypeClass TypeClass
ConstantClass * create(TypeClass *Ty) const
ConstantAggrKeyType(const ConstantClass *C, SmallVectorImpl< Constant * > &Storage)
bool operator==(const ConstantAggrKeyType &X) const
ConstantExprKeyType(unsigned Opcode, ArrayRef< Constant * > Ops, unsigned short SubclassOptionalData=0, ArrayRef< int > ShuffleMask={}, Type *ExplicitTy=nullptr, std::optional< ConstantRange > InRange=std::nullopt)
ConstantExprKeyType(const ConstantExpr *CE, SmallVectorImpl< Constant * > &Storage)
ConstantInfo< ConstantExpr >::TypeClass TypeClass
static bool rangesEqual(const std::optional< ConstantRange > &A, const std::optional< ConstantRange > &B)
ConstantExpr * create(TypeClass *Ty) const
bool operator==(const ConstantExprKeyType &X) const
bool operator==(const ConstantExpr *CE) const
ConstantExprKeyType(ArrayRef< Constant * > Operands, const ConstantExpr *CE)
ConstantAggrKeyType< ConstantArray > ValType
ConstantExprKeyType ValType
ConstantPtrAuthKeyType ValType
ConstantAggrKeyType< ConstantStruct > ValType
ConstantAggrKeyType< ConstantVector > ValType
bool operator==(const ConstantPtrAuthKeyType &X) const
ArrayRef< Constant * > Operands
ConstantPtrAuthKeyType(ArrayRef< Constant * > Operands, const ConstantPtrAuth *)
ConstantPtrAuthKeyType(const ConstantPtrAuth *C, SmallVectorImpl< Constant * > &Storage)
ConstantPtrAuthKeyType(ArrayRef< Constant * > Operands)
bool operator==(const ConstantPtrAuth *C) const
ConstantPtrAuth * create(TypeClass *Ty) const
ConstantInfo< ConstantPtrAuth >::TypeClass TypeClass
An information struct used to provide DenseMap with the various necessary components for a given valu...
FixedNumOperandTraits - determine the allocation regime of the Use array when it is a prefix to the U...
bool operator==(const InlineAsmKeyType &X) const
ConstantInfo< InlineAsm >::TypeClass TypeClass
InlineAsm * create(TypeClass *Ty) const
bool operator==(const InlineAsm *Asm) const
InlineAsmKeyType(const InlineAsm *Asm, SmallVectorImpl< Constant * > &)
InlineAsmKeyType(StringRef AsmString, StringRef Constraints, FunctionType *FTy, bool HasSideEffects, bool IsAlignStack, InlineAsm::AsmDialect AsmDialect, bool canThrow)
InlineAsm::AsmDialect AsmDialect
Compile-time customization of User operands.
Information about how a User object was allocated, to be passed into the User constructor.
Indicates this User has operands co-allocated.
VariadicOperandTraits - determine the allocation regime of the Use array when it is a prefix to the U...