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

/external/llvm/lib/Target/R600/
H A DAMDGPUPromoteAlloca.cpp67 const Type *ParamTy = FTy->getParamType(i); local
68 if (ParamTy->isPointerTy() &&
69 ParamTy->getPointerAddressSpace() == AMDGPUAS::LOCAL_ADDRESS) {
/external/clang/lib/AST/
H A DDeclCXX.cpp556 const ReferenceType *ParamTy = local
558 if (!ParamTy || ParamTy->getPointeeType().isConstQualified())
H A DExprCXX.cpp745 QualType ParamTy = local
747 if (ParamTy->isPointerType())
749 if (ParamTy->isAnyCharacterType())
751 if (ParamTy->isIntegerType())
753 if (ParamTy->isFloatingType())
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1286 Type *ParamTy = FT->getParamType(i); local
1289 if (!CastInst::isBitCastable(ActTy, ParamTy))
1294 typeIncompatible(ParamTy, i + 1), i + 1))
1302 if (ParamTy != ActTy &&
1305 PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy);
1379 Type *ParamTy = FT->getParamType(i); local
1381 if ((*AI)->getType() == ParamTy) {
1384 Args.push_back(Builder->CreateBitCast(*AI, ParamTy));
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp1524 Type *ParamTy = CInst->getArgOperand(0)->getType(); local
1532 if (Op->getType() != ParamTy)
1533 Op = new BitCastInst(Op, ParamTy, "", InsertPos);
2297 Type *ParamTy = PointerType::getUnqual(Type::getInt8Ty(ArgTy->getContext())); local
2306 Value *MyArg = ArgTy == ParamTy ? Arg :
2307 new BitCastInst(Arg, ParamTy, "", InsertPt);
2320 Value *MyArg = ArgTy == ParamTy ? Arg :
2321 new BitCastInst(Arg, ParamTy, "", InsertPt);
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp2333 QualType ParamTy = FD->getParamDecl(0)->getType(); local
2335 ParamTy, Ty) != Sema::Compatible) {
2337 << NI.getName() << ParamTy << Ty;
H A DSemaLookup.cpp2685 QualType ParamTy = FD->getParamDecl(ArgIdx)->getType(); local
2686 if (!Context.hasSameUnqualifiedType(ArgTys[ArgIdx], ParamTy)) {
H A DSemaType.cpp2907 QualType ParamTy = Param->getType(); local
2908 assert(!ParamTy.isNull() && "Couldn't parse type?");
2913 if (ParamTy->isVoidType()) {
2919 ParamTy = Context.IntTy;
2920 Param->setType(ParamTy);
2924 ParamTy = Context.IntTy;
2925 Param->setType(ParamTy);
2928 if (ParamTy.hasQualifiers())
2934 } else if (ParamTy->isHalfType()) {
2940 diag::err_opencl_half_param) << ParamTy;
[all...]
H A DSemaOverload.cpp7154 QualType ParamTy = *Ptr;
7155 QualType PointeeTy = ParamTy->getPointeeType();
7164 &ParamTy, Args, CandidateSet);
7204 QualType ParamTy = *Ptr; local
7205 S.AddBuiltinCandidate(ParamTy, &ParamTy, Args, CandidateSet);
7782 QualType ParamTy = S.Context.BoolTy; local
7783 S.AddBuiltinCandidate(ParamTy, &ParamTy, Args, CandidateSet,

Completed in 897 milliseconds