Searched defs:ParamTy (Results 1 - 11 of 11) sorted by relevance

/external/llvm/lib/Target/R600/
H A DAMDGPUPromoteAlloca.cpp66 const Type *ParamTy = FTy->getParamType(i); local
67 if (ParamTy->isPointerTy() &&
68 ParamTy->getPointerAddressSpace() == AMDGPUAS::LOCAL_ADDRESS) {
H A DSIISelLowering.cpp525 const PointerType *ParamTy = local
528 ParamTy && ParamTy->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS) {
/external/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp764 QualType ParamTy = Param->getType(); local
765 assert(!ParamTy.isNull() && "Couldn't parse type?");
766 if (ParamTy->containsUnexpandedParameterPack()) return true;
H A DSemaLookup.cpp2744 QualType ParamTy = FD->getParamDecl(ArgIdx)->getType(); local
2745 if (!Context.hasSameUnqualifiedType(ArgTys[ArgIdx], ParamTy)) {
H A DSemaType.cpp2958 QualType ParamTy = Param->getType(); local
2959 assert(!ParamTy.isNull() && "Couldn't parse type?");
2964 if (ParamTy->isVoidType()) {
2970 ParamTy = Context.IntTy;
2971 Param->setType(ParamTy);
2975 ParamTy = Context.IntTy;
2976 Param->setType(ParamTy);
2979 if (ParamTy.hasQualifiers())
2985 } else if (ParamTy->isHalfType()) {
2991 diag::err_opencl_half_param) << ParamTy;
[all...]
H A DSemaDeclAttr.cpp2461 QualType ParamTy = FD->getParamDecl(0)->getType(); local
2463 ParamTy, Ty) != Sema::Compatible) {
2465 << NI.getName() << ParamTy << Ty;
H A DSemaOverload.cpp7316 QualType ParamTy = *Ptr;
7317 QualType PointeeTy = ParamTy->getPointeeType();
7326 &ParamTy, Args, CandidateSet);
7366 QualType ParamTy = *Ptr; local
7367 S.AddBuiltinCandidate(ParamTy, &ParamTy, Args, CandidateSet);
7944 QualType ParamTy = S.Context.BoolTy; local
7945 S.AddBuiltinCandidate(ParamTy, &ParamTy, Args, CandidateSet,
/external/clang/lib/AST/
H A DDeclCXX.cpp556 const ReferenceType *ParamTy = local
558 if (!ParamTy || ParamTy->getPointeeType().isConstQualified())
H A DExprCXX.cpp738 QualType ParamTy = local
740 if (ParamTy->isPointerType())
742 if (ParamTy->isAnyCharacterType())
744 if (ParamTy->isIntegerType())
746 if (ParamTy->isFloatingType())
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1536 Type *ParamTy = FT->getParamType(i); local
1539 if (!CastInst::isBitOrNoopPointerCastable(ActTy, ParamTy, DL))
1544 typeIncompatible(ParamTy, i + 1), i + 1))
1552 if (ParamTy != ActTy &&
1555 PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy);
1629 Type *ParamTy = FT->getParamType(i); local
1631 if ((*AI)->getType() == ParamTy) {
1634 Args.push_back(Builder->CreateBitOrPointerCast(*AI, ParamTy));
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp904 Type *ParamTy = CInst->getArgOperand(0)->getType(); local
912 if (Op->getType() != ParamTy)
913 Op = new BitCastInst(Op, ParamTy, "", InsertPos);
1483 Type *ParamTy = PointerType::getUnqual(Type::getInt8Ty(ArgTy->getContext())); local
1489 Value *MyArg = ArgTy == ParamTy ? Arg :
1490 new BitCastInst(Arg, ParamTy, "", InsertPt);
1500 Value *MyArg = ArgTy == ParamTy ? Arg :
1501 new BitCastInst(Arg, ParamTy, "", InsertPt);

Completed in 410 milliseconds