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

References

include/llvm/ADT/DenseMapInfo.h
  287     if (EltCnt.Scalable)
include/llvm/CodeGen/ValueTypes.h
   88       assert (!EC.Scalable && "We don't support extended scalable types yet");
include/llvm/IR/DataLayout.h
  661     return TypeSize(MinBits, EltCnt.Scalable);
include/llvm/Support/MachineValueType.h
 1071       if (EC.Scalable)
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) {}
unittests/CodeGen/ScalableVectorMVTsTest.cpp
   75   ASSERT_TRUE(EltCnt.Scalable);
   86   ASSERT_FALSE(EltCnt.Scalable);
unittests/IR/VectorTypesTest.cpp
   88   ASSERT_FALSE(EltCnt.Scalable);
  162   ASSERT_TRUE(EltCnt.Scalable);