Lines Matching defs:PtrTy
112 Type *PtrTy = PointerType::get(C, 0);
114 VectorType *PtrVecTy = FixedVectorType::get(PtrTy, 4);
116 VectorType *PtrScalableVecTy = ScalableVectorType::get(PtrTy, 4);
122 ConstantExpr::getPointerCast(Constant::getNullValue(PtrTy), Int64Ty));
125 EXPECT_EQ(Constant::getNullValue(PtrTy),
126 ConstantExpr::getPointerCast(Constant::getNullValue(PtrTy), PtrTy));
153 ConstantExpr::getIntToPtr(K, PtrTy), Ptr1Ty));
155 ConstantExpr::getIntToPtr(K, Ptr1Ty), PtrTy));
157 Constant *NullPtr0 = Constant::getNullValue(PtrTy);
161 EXPECT_NE(Constant::getNullValue(PtrTy),
165 ConstantExpr::getAddrSpaceCast(NullPtr1, PtrTy));
318 Type *PtrTy = PointerType::get(Context, 0);
326 new GlobalVariable(*M, PtrTy, false, GlobalValue::ExternalLinkage, GEP);
424 auto *PtrTy = PointerType::get(Context, 0);
425 auto *C = ConstantExpr::getBitCast(G, PtrTy);
635 PointerType *PtrTy = PointerType::get(Context, 0);
636 Constant *CPU = UndefValue::get(PtrTy);
637 Constant *CPP = PoisonValue::get(PtrTy);
638 Constant *CP0 = ConstantPointerNull::get(PtrTy);