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 IsPointer ? getFieldValue(PointerVectorScalableFieldInfo)
173 : getFieldValue(VectorScalableFieldInfo);
185 assert(IsVector &&
"cannot get number of elements on scalar/aggregate");
187 ? getFieldValue(PointerVectorElementsFieldInfo)
188 : getFieldValue(VectorElementsFieldInfo),
223 "invalid to directly change element size for pointers");
240 "cannot divide scalar of size zero");
269 return getFieldValue(ScalarSizeFieldInfo);
272 return getFieldValue(VectorSizeFieldInfo);
274 return getFieldValue(PointerVectorSizeFieldInfo);
276 assert(IsPointer &&
"unexpected LLT");
277 return getFieldValue(PointerSizeFieldInfo);
281 assert(RawData != 0 &&
"Invalid Type");
282 assert(IsPointer &&
"cannot get address space of non-pointer type");
284 return getFieldValue(PointerAddressSpaceFieldInfo);
286 return getFieldValue(PointerVectorAddressSpaceFieldInfo);
291 assert(
isVector() &&
"cannot get element type of scalar/aggregate");
300#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
305 return IsPointer ==
RHS.IsPointer && IsVector ==
RHS.IsVector &&
306 IsScalar ==
RHS.IsScalar &&
RHS.RawData == RawData;
347 typedef int BitFieldInfo[2];
355 static const constexpr BitFieldInfo ScalarSizeFieldInfo{32, 0};
359 static const constexpr BitFieldInfo PointerSizeFieldInfo{16, 0};
360 static const constexpr BitFieldInfo PointerAddressSpaceFieldInfo{
361 24, PointerSizeFieldInfo[0] + PointerSizeFieldInfo[1]};
362 static_assert((PointerAddressSpaceFieldInfo[0] +
363 PointerAddressSpaceFieldInfo[1]) <= 61,
364 "Insufficient bits to encode all data");
369 static const constexpr BitFieldInfo VectorElementsFieldInfo{16, 0};
370 static const constexpr BitFieldInfo VectorSizeFieldInfo{
371 32, VectorElementsFieldInfo[0] + VectorElementsFieldInfo[1]};
372 static const constexpr BitFieldInfo VectorScalableFieldInfo{
373 1, VectorSizeFieldInfo[0] + VectorSizeFieldInfo[1]};
374 static_assert((VectorSizeFieldInfo[0] + VectorSizeFieldInfo[1]) <= 61,
375 "Insufficient bits to encode all data");
381 static const constexpr BitFieldInfo PointerVectorElementsFieldInfo{16, 0};
382 static const constexpr BitFieldInfo PointerVectorSizeFieldInfo{
384 PointerVectorElementsFieldInfo[1] + PointerVectorElementsFieldInfo[0]};
385 static const constexpr BitFieldInfo PointerVectorAddressSpaceFieldInfo{
386 24, PointerVectorSizeFieldInfo[1] + PointerVectorSizeFieldInfo[0]};
387 static const constexpr BitFieldInfo PointerVectorScalableFieldInfo{
388 1, PointerVectorAddressSpaceFieldInfo[0] +
389 PointerVectorAddressSpaceFieldInfo[1]};
390 static_assert((PointerVectorAddressSpaceFieldInfo[0] +
391 PointerVectorAddressSpaceFieldInfo[1]) <= 61,
392 "Insufficient bits to encode all data");
399 static constexpr uint64_t getMask(
const BitFieldInfo FieldInfo) {
400 const int FieldSizeInBits = FieldInfo[0];
401 return (((
uint64_t)1) << FieldSizeInBits) - 1;
405 assert(Val <= Mask &&
"Value too large for field");
406 return (Val & Mask) << Shift;
409 const BitFieldInfo FieldInfo) {
410 return maskAndShift(Val, getMask(FieldInfo), FieldInfo[1]);
413 constexpr uint64_t getFieldValue(
const BitFieldInfo FieldInfo)
const {
414 return getMask(FieldInfo) & (RawData >> FieldInfo[1]);
417 constexpr void init(
bool IsPointer,
bool IsVector,
bool IsScalar,
418 ElementCount EC,
uint64_t SizeInBits,
420 assert(SizeInBits <= std::numeric_limits<unsigned>::max() &&
421 "Not enough bits in LLT to represent size");
423 this->IsVector = IsVector;
424 this->IsScalar = IsScalar;
426 RawData = maskAndShift(SizeInBits, ScalarSizeFieldInfo);
428 assert(
EC.isVector() &&
"invalid number of vector elements");
431 maskAndShift(
EC.getKnownMinValue(), VectorElementsFieldInfo) |
432 maskAndShift(SizeInBits, VectorSizeFieldInfo) |
433 maskAndShift(
EC.isScalable() ? 1 : 0, VectorScalableFieldInfo);
436 maskAndShift(
EC.getKnownMinValue(),
437 PointerVectorElementsFieldInfo) |
438 maskAndShift(SizeInBits, PointerVectorSizeFieldInfo) |
439 maskAndShift(
AddressSpace, PointerVectorAddressSpaceFieldInfo) |
440 maskAndShift(
EC.isScalable() ? 1 : 0,
441 PointerVectorScalableFieldInfo);
442 }
else if (IsPointer)
443 RawData = maskAndShift(SizeInBits, PointerSizeFieldInfo) |
444 maskAndShift(
AddressSpace, PointerAddressSpaceFieldInfo);
#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.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
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...