Searched refs:PT (Results 76 - 100 of 122) sorted by relevance

12345

/external/clang/lib/Sema/
H A DSemaDecl.cpp1957 QualType PT = T->getAs<PointerType>()->getPointeeType(); local
1958 if (!PT->isStructureType())
7486 static OpenCLParamType getOpenCLKernelParameterType(QualType PT) { argument
7487 if (PT->isPointerType()) {
7488 QualType PointeeType = PT->getPointeeType();
7498 if (PT->isImageType())
7501 if (PT->isBooleanType())
7504 if (PT->isEventT())
7507 if (PT->isHalfType())
7510 if (PT
7521 QualType PT = Param->getType(); local
8585 QualType PT = Param->getType(); local
9024 const PointerType* PT; local
[all...]
H A DSemaExprObjC.cpp515 if (const PointerType *PT = ValueType->getAs<PointerType>()) {
516 QualType PointeeType = PT->getPointeeType();
4037 if (const ParenType *PT = dyn_cast<ParenType>(DT))
4038 QDT = PT->desugar();
H A DSemaStmt.cpp3448 const PointerType *PT = ThrowType->getAs<PointerType>(); local
3449 if (!PT || !PT->getPointeeType()->isVoidType())
/external/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp218 if (auto *PT = dyn_cast<PointerType>(T))
222 return PT->getAddressSpace() == 1;
1641 auto PT = cast<PointerType>(AI->getAllocatedType());
1642 Constant *CPN = ConstantPointerNull::get(PT);
H A DSCCP.cpp913 else if (VectorType *PT = dyn_cast<VectorType>(I.getType()))
914 markConstant(IV, &I, Constant::getAllOnesValue(PT));
/external/clang/lib/AST/
H A DDeclPrinter.cpp478 while (const ParenType *PT = dyn_cast<ParenType>(Ty)) {
480 Ty = PT->getInnerType();
H A DASTContext.cpp2267 if (auto *PT = dyn_cast<ParenType>(Orig))
2269 getFunctionTypeWithExceptionSpec(Context, PT->getInnerType(), ESI));
2352 if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos))
2353 return QualType(PT, 0);
2441 if (BlockPointerType *PT =
2443 return QualType(PT, 0);
2548 if (MemberPointerType *PT =
2550 return QualType(PT, 0);
3134 if (PipeType *PT = PipeTypes.FindNodeOrInsertPos(ID, InsertPos))
3135 return QualType(PT,
5636 const PointerType *PT = T->castAs<PointerType>(); local
[all...]
H A DASTDumper.cpp337 for (QualType PT : T->getParamTypes())
338 dumpTypeAsChild(PT);
H A DExprConstant.cpp3026 if (const PointerType *PT = SubobjType->getAs<PointerType>())
3027 PointeeType = PT->getPointeeType();
3184 if (const PointerType *PT = SubobjType->getAs<PointerType>())
3185 PointeeType = PT->getPointeeType();
3297 if (const PointerType *PT = LVType->getAs<PointerType>())
3298 LVType = PT->getPointeeType();
3358 if (const PointerType *PT = TargetQT->getAs<PointerType>())
3359 TargetQT = PT->getPointeeType();
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp1132 if (const PointerType *PT = OrigTy->getAs<PointerType>()) {
1133 QualType PointeeType = PT->getPointeeType();
/external/llvm/lib/Linker/
H A DIRMover.cpp160 if (PointerType *PT = dyn_cast<PointerType>(DstTy)) {
161 if (PT->getAddressSpace() != cast<PointerType>(SrcTy)->getAddressSpace())
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp865 SDValue PT = local
869 return CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
/external/spirv-llvm/lib/SPIRV/
H A DSPIRVWriter.cpp574 std::vector<SPIRVType *> PT; local
577 PT.push_back(transType(*I));
578 return mapType(T, BM->addFunctionType(RT, PT));
/external/llvm/lib/IR/
H A DVerifier.cpp1703 auto *PT = dyn_cast<PointerType>(Target->getType()); local
1704 Assert(PT && PT->getElementType()->isFunctionTy(),
1706 FunctionType *TargetFuncType = cast<FunctionType>(PT->getElementType());
3940 auto *PT = cast<PointerType>(Target->getType()); local
3941 auto *TargetFuncType = cast<FunctionType>(PT->getElementType());
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp1510 if (const ObjCObjectPointerType *PT =
1512 ReceiverClass = PT->getInterfaceDecl();
2914 if (const ObjCObjectPointerType *PT = RetTy->getAs<ObjCObjectPointerType>())
2915 if (PT->isObjCQualifiedIdType() || PT->isObjCIdType() ||
2916 PT->isObjCClassType()) {
/external/llvm/include/llvm/Target/
H A DTargetLowering.h805 if (PointerType *PT = dyn_cast<PointerType>(Elm)) {
806 EVT PointerTy(getPointerTy(DL, PT->getAddressSpace()));
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DValueTracking.cpp1557 PointerType *PT = cast<PointerType>(GEP->getOperand(0)->getType());
1558 ArrayType *AT = dyn_cast<ArrayType>(PT->getElementType());
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DSCCP.cpp941 else if (VectorType *PT = dyn_cast<VectorType>(I.getType()))
942 markConstant(IV, &I, Constant::getAllOnesValue(PT));
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMFastISel.cpp1895 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); local
1896 FunctionType *FTy = cast<FunctionType>(PT->getElementType());
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86FastISel.cpp1516 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1517 FunctionType *FTy = cast<FunctionType>(PT->getElementType());
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DGlobalOpt.cpp1427 PointerType *PT = cast<PointerType>(FieldGlobals[i]->getType()); local
1428 Constant *Null = Constant::getNullValue(PT->getElementType());
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h903 const PointerType *PT,
/external/clang/lib/CodeGen/
H A DCGExpr.cpp854 if (auto PT = E->getType()->getAs<PointerType>())
855 EmitVTablePtrCheckForCast(PT->getPointeeType(), Addr.getPointer(),
3196 const PointerType *PT = E->getBase()->getType()->getAs<PointerType>(); local
3197 Base = MakeAddrLValue(Ptr, PT->getPointeeType(), AlignSource);
H A DCGObjCGNU.cpp1173 const ObjCObjectPointerType *PT = local
1175 assert(PT && "Invalid @catch type.");
1176 const ObjCInterfaceType *IT = PT->getInterfaceType();
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp545 if (auto *PT = dyn_cast<PointerType>(Src->getType())) {
546 switch (PT->getAddressSpace()) {
5169 if (auto *PT = dyn_cast<PointerType>(Src->getType()))
5170 return (PT->getAddressSpace() == spN);

Completed in 688 milliseconds

12345