reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/DenseMapInfo.h
  288       return (EltCnt.Min * 37U) - 1U;
  290     return EltCnt.Min * 37U;
include/llvm/CodeGen/ValueTypes.h
   89       return getExtendedVectorVT(Context, VT, EC.Min);
  353       assert(!(EltCnt.Min & 1) && "Splitting vector, but not in half!");
include/llvm/IR/DataLayout.h
  659     uint64_t MinBits = EltCnt.Min *
include/llvm/IR/DerivedTypes.h
  523     assert ((EltCnt.Min & 1) == 0 &&
include/llvm/Support/MachineValueType.h
  398       assert(!(EltCnt.Min & 1) && "Splitting vector, but not in half!");
 1072         return getScalableVectorVT(VT, EC.Min);
 1073       return getVectorVT(VT, EC.Min);
include/llvm/Support/TypeSize.h
   33     return { Min * RHS, Scalable };
   36     return { Min / RHS, Scalable };
   40     return Min == RHS.Min && Scalable == RHS.Scalable;
   40     return Min == RHS.Min && Scalable == RHS.Scalable;
lib/IR/Type.cpp
  612   : SequentialType(VectorTyID, ElType, EC.Min), Scalable(EC.Scalable) {}
  615   assert(EC.Min > 0 && "#Elements of a VectorType must be greater than 0");
unittests/CodeGen/ScalableVectorMVTsTest.cpp
   74   EXPECT_EQ(EltCnt.Min, 4U);
   85   EXPECT_EQ(EltCnt.Min, 8U);
unittests/IR/VectorTypesTest.cpp
   87   EXPECT_EQ(EltCnt.Min, 8U);
  161   EXPECT_EQ(EltCnt.Min, 8U);