reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
60 EXPECT_EQ(VTy, VSTy); 64 EXPECT_EQ(STy, VTy.getElementType()); 67 ASSERT_TRUE(VTy.isValid()); 68 ASSERT_TRUE(VTy.isVector()); 70 ASSERT_FALSE(VTy.isScalar()); 71 ASSERT_FALSE(VTy.isPointer()); 74 EXPECT_EQ(S * Elts, VTy.getSizeInBits()); 75 EXPECT_EQ(S, VTy.getScalarSizeInBits()); 76 EXPECT_EQ(Elts, VTy.getNumElements()); 79 EXPECT_TRUE(VTy == VTy); 79 EXPECT_TRUE(VTy == VTy); 80 EXPECT_FALSE(VTy != VTy); 80 EXPECT_FALSE(VTy != VTy); 84 EXPECT_NE(VTy, STy); 89 EXPECT_EQ(VTy, getLLTForType(*IRTy, DL));