reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
240 EXPECT_EQ(DL.getTypeSizeInBits(ScV2Int64Ty), 241 DL.getTypeSizeInBits(ScV4Int32Ty)); 242 EXPECT_EQ(DL.getTypeSizeInBits(ScV2Int32Ty).getKnownMinSize(), 64U); 243 EXPECT_EQ(DL.getTypeStoreSize(ScV2Int64Ty), 244 DL.getTypeStoreSize(ScV4Int32Ty)); 245 EXPECT_NE(DL.getTypeStoreSizeInBits(ScV2Int32Ty), 246 DL.getTypeStoreSizeInBits(ScV2Int64Ty)); 247 EXPECT_EQ(DL.getTypeStoreSizeInBits(ScV2Int32Ty).getKnownMinSize(), 64U); 248 EXPECT_EQ(DL.getTypeStoreSize(ScV2Int64Ty).getKnownMinSize(), 16U); 249 EXPECT_EQ(DL.getTypeAllocSize(ScV4Int32Ty), 250 DL.getTypeAllocSize(ScV2Int64Ty)); 251 EXPECT_NE(DL.getTypeAllocSizeInBits(ScV2Int32Ty), 252 DL.getTypeAllocSizeInBits(ScV2Int64Ty)); 253 EXPECT_EQ(DL.getTypeAllocSizeInBits(ScV4Int32Ty).getKnownMinSize(), 128U); 254 EXPECT_EQ(DL.getTypeAllocSize(ScV2Int32Ty).getKnownMinSize(), 8U); 255 ASSERT_TRUE(DL.typeSizeEqualsStoreSize(ScV4Int32Ty));