26#ifndef LLVM_CODEGEN_LOWLEVELTYPE_H
27#define LLVM_CODEGEN_LOWLEVELTYPE_H
43 return LLT{
false,
false,
true,
50 return LLT{
false,
false,
58 assert(SizeInBits > 0 &&
"invalid pointer size");
59 return LLT{
true,
false,
false,
65 assert(!EC.isScalar() &&
"invalid number of vector elements");
66 return LLT{
false,
true,
false,
67 EC, ScalarSizeInBits, 0};
72 assert(!EC.isScalar() &&
"invalid number of vector elements");
101 unsigned ScalarSizeInBits) {
114 unsigned ScalarSizeInBits) {
125 return EC.isScalar() ? ScalarTy :
LLT::vector(EC, ScalarTy);
129 assert(ScalarSize <= std::numeric_limits<unsigned>::max() &&
130 "Not enough bits in LLT to represent size");
145 constexpr bool isValid()
const {
return IsScalar || RawData != 0; }
146 constexpr bool isScalar()
const {
return IsScalar; }
147 constexpr bool isToken()
const {
return IsScalar && RawData == 0; };
150 return isValid() && IsPointer && !IsVector;
162 "Possible incorrect use of LLT::getNumElements() for "
163 "scalable vector. Scalable flag may be dropped, use "
164 "LLT::getElementCount() instead");
172 return getFieldValue(VectorScalableFieldInfo);
184 assert(IsVector &&
"cannot get number of elements on scalar/aggregate");
220 "invalid to directly change element size for pointers");
237 "cannot divide scalar of size zero");
266 return getFieldValue(PointerSizeFieldInfo);
267 return getFieldValue(ScalarSizeFieldInfo);
272 "cannot get address space of non-pointer type");
273 return getFieldValue(PointerAddressSpaceFieldInfo);
278 assert(
isVector() &&
"cannot get element type of scalar/aggregate");
287#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
292 return IsPointer ==
RHS.IsPointer && IsVector ==
RHS.IsVector &&
293 IsScalar ==
RHS.IsScalar &&
RHS.RawData == RawData;
334 typedef int BitFieldInfo[2];
342 static const constexpr BitFieldInfo ScalarSizeFieldInfo{32, 29};
346 static const constexpr BitFieldInfo PointerSizeFieldInfo{16, 45};
347 static const constexpr BitFieldInfo PointerAddressSpaceFieldInfo{24, 21};
352 static const constexpr BitFieldInfo VectorElementsFieldInfo{16, 5};
353 static const constexpr BitFieldInfo VectorScalableFieldInfo{1, 0};
365 static constexpr uint64_t getMask(
const BitFieldInfo FieldInfo) {
366 const int FieldSizeInBits = FieldInfo[0];
367 return (((
uint64_t)1) << FieldSizeInBits) - 1;
371 assert(Val <= Mask &&
"Value too large for field");
372 return (Val & Mask) << Shift;
375 const BitFieldInfo FieldInfo) {
376 return maskAndShift(Val, getMask(FieldInfo), FieldInfo[1]);
379 constexpr uint64_t getFieldValue(
const BitFieldInfo FieldInfo)
const {
380 return getMask(FieldInfo) & (RawData >> FieldInfo[1]);
383 constexpr void init(
bool IsPointer,
bool IsVector,
bool IsScalar,
384 ElementCount EC,
uint64_t SizeInBits,
386 assert(SizeInBits <= std::numeric_limits<unsigned>::max() &&
387 "Not enough bits in LLT to represent size");
389 this->IsVector = IsVector;
390 this->IsScalar = IsScalar;
392 RawData = maskAndShift(SizeInBits, PointerSizeFieldInfo) |
393 maskAndShift(
AddressSpace, PointerAddressSpaceFieldInfo);
395 RawData = maskAndShift(SizeInBits, ScalarSizeFieldInfo);
398 RawData |= maskAndShift(
EC.getKnownMinValue(), VectorElementsFieldInfo) |
399 maskAndShift(
EC.isScalable() ? 1 : 0, VectorScalableFieldInfo);
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
This file defines DenseMapInfo traits for DenseMap.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static constexpr ElementCount getScalable(ScalarTy MinVal)
static constexpr ElementCount getFixed(ScalarTy MinVal)
static constexpr ElementCount get(ScalarTy MinVal, bool Scalable)
static constexpr LLT float64()
Get a 64-bit IEEE double value.
void print(raw_ostream &OS) const
constexpr bool isScalableVector() const
Returns true if the LLT is a scalable vector.
static constexpr LLT scalarOrVector(ElementCount EC, uint64_t ScalarSize)
constexpr unsigned getScalarSizeInBits() const
constexpr LLT(bool isPointer, bool isVector, bool isScalar, ElementCount EC, uint64_t SizeInBits, unsigned AddressSpace)
constexpr bool isScalar() const
static constexpr LLT scalable_vector(unsigned MinNumElements, unsigned ScalarSizeInBits)
Get a low-level scalable vector of some number of elements and element width.
constexpr bool operator==(const LLT &RHS) const
constexpr LLT changeElementType(LLT NewEltTy) const
If this type is a vector, return a vector with the same number of elements but the new element type.
constexpr LLT multiplyElements(int Factor) const
Produce a vector type that is Factor times bigger, preserving the element type.
static constexpr LLT vector(ElementCount EC, unsigned ScalarSizeInBits)
Get a low-level vector of some number of elements and element width.
constexpr bool isPointerVector() const
static constexpr LLT scalar(unsigned SizeInBits)
Get a low-level scalar or aggregate "bag of bits".
constexpr bool isValid() const
constexpr uint16_t getNumElements() const
Returns the number of elements in a vector LLT.
constexpr bool operator!=(const LLT &RHS) const
constexpr bool isToken() const
constexpr bool isVector() const
static constexpr LLT pointer(unsigned AddressSpace, unsigned SizeInBits)
Get a low-level pointer in the given address space.
constexpr bool isScalable() const
Returns true if the LLT is a scalable vector.
constexpr uint64_t getUniqueRAWLLTData() const
constexpr bool isByteSized() const
constexpr TypeSize getSizeInBits() const
Returns the total size of the type. Must only be called on sized types.
constexpr bool isPointer() const
constexpr LLT getElementType() const
Returns the vector's element type. Only valid for vector types.
static constexpr LLT vector(ElementCount EC, LLT ScalarTy)
Get a low-level vector of some number of elements and element type.
constexpr ElementCount getElementCount() const
constexpr LLT changeElementSize(unsigned NewEltSize) const
If this type is a vector, return a vector with the same number of elements but the new element size.
static constexpr LLT fixed_vector(unsigned NumElements, LLT ScalarTy)
Get a low-level fixed-width vector of some number of elements and element type.
static constexpr LLT float16()
Get a 16-bit IEEE half value.
constexpr unsigned getAddressSpace() const
static constexpr LLT fixed_vector(unsigned NumElements, unsigned ScalarSizeInBits)
Get a low-level fixed-width vector of some number of elements and element width.
constexpr bool isPointerOrPointerVector() const
constexpr bool isFixedVector() const
Returns true if the LLT is a fixed vector.
static constexpr LLT token()
Get a low-level token; just a scalar with zero bits (or no size).
constexpr LLT changeElementCount(ElementCount EC) const
Return a vector or scalar with the same element type and the new element count.
LLVM_DUMP_METHOD void dump() const
constexpr LLT getScalarType() const
constexpr TypeSize getSizeInBytes() const
Returns the total size of the type in bytes, i.e.
static constexpr LLT scalable_vector(unsigned MinNumElements, LLT ScalarTy)
Get a low-level scalable vector of some number of elements and element type.
static constexpr LLT scalarOrVector(ElementCount EC, LLT ScalarTy)
static constexpr LLT float32()
Get a 32-bit IEEE float value.
constexpr LLT divide(int Factor) const
Return a type that is Factor times smaller.
static constexpr TypeSize getFixed(ScalarTy ExactSize)
constexpr bool isKnownMultipleOf(ScalarTy RHS) const
This function tells the caller whether the element count is known at compile time to be a multiple of...
constexpr ScalarTy getFixedValue() const
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
This class implements an extremely fast bulk output stream that can only output to a stream.
This is an optimization pass for GlobalISel generic memory operations.
void reportInvalidSizeRequest(const char *Msg)
Reports a diagnostic message to indicate an invalid size request has been done on a scalable vector.
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
static LLT getTombstoneKey()
static bool isEqual(const LLT &LHS, const LLT &RHS)
static unsigned getHashValue(const LLT &Ty)
An information struct used to provide DenseMap with the various necessary components for a given valu...