reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
456 return { (BaseSize.getKnownMinSize() + 7) / 8, BaseSize.isScalable() };
include/llvm/Support/TypeSize.h 195 return {(Size.getKnownMinSize() + Align - 1) / Align * Align,
lib/IR/DataLayout.cpp 751 return getAlignmentInfo(AlignType, getTypeSizeInBits(Ty).getKnownMinSize(),
lib/IR/Instructions.cpp3050 if (SrcBits.getKnownMinSize() == 0 || DestBits.getKnownMinSize() == 0) 3050 if (SrcBits.getKnownMinSize() == 0 || DestBits.getKnownMinSize() == 0)unittests/IR/VectorTypesTest.cpp
178 EXPECT_EQ(V2I32Len.getKnownMinSize(), 64U); 227 EXPECT_EQ(ScV2I32Len.getKnownMinSize(), 64U); 242 EXPECT_EQ(DL.getTypeSizeInBits(ScV2Int32Ty).getKnownMinSize(), 64U); 247 EXPECT_EQ(DL.getTypeStoreSizeInBits(ScV2Int32Ty).getKnownMinSize(), 64U); 248 EXPECT_EQ(DL.getTypeStoreSize(ScV2Int64Ty).getKnownMinSize(), 16U); 253 EXPECT_EQ(DL.getTypeAllocSizeInBits(ScV4Int32Ty).getKnownMinSize(), 128U); 254 EXPECT_EQ(DL.getTypeAllocSize(ScV2Int32Ty).getKnownMinSize(), 8U); 271 EXPECT_EQ(V4Int32Ty->getPrimitiveSizeInBits().getKnownMinSize(), 272 ScV4Int32Ty->getPrimitiveSizeInBits().getKnownMinSize());