HomeSort by: relevance | last modified time | path
    Searched defs:ParamTy (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
ObjCARC.cpp 109 Type *ParamTy = Func->getArg(0)->getType();
110 Value *CallArg = Builder.CreateBitCast(AnnotatedCall, ParamTy);
ObjCARCOpts.cpp 1184 Type *ParamTy = CInst->getArgOperand(0)->getType();
1193 if (Op->getType() != ParamTy)
1194 Op = new BitCastInst(Op, ParamTy, "", InsertPos);
1750 Type *ParamTy = PointerType::getUnqual(Type::getInt8Ty(ArgTy->getContext()));
1756 Value *MyArg = ArgTy == ParamTy ? Arg :
1757 new BitCastInst(Arg, ParamTy, "", InsertPt);
1769 Value *MyArg = ArgTy == ParamTy ? Arg :
1770 new BitCastInst(Arg, ParamTy, "", InsertPt);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
InnerPointerChecker.cpp 169 QualType ParamTy = FD->getParamDecl(I)->getType();
170 if (!ParamTy->isReferenceType() ||
171 ParamTy->getPointeeType().isConstQualified())
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateVariadic.cpp 935 QualType ParamTy = Param->getType();
936 assert(!ParamTy.isNull() && "Couldn't parse type?");
937 if (ParamTy->containsUnexpandedParameterPack()) return true;
SemaTemplate.cpp 2404 QualType ParamTy = NewDI->getType();
2407 ParamTy.getNonLValueExprType(SemaRef.Context),
2408 ParamTy->isLValueReferenceType() ? VK_LValue :
2409 ParamTy->isRValueReferenceType() ? VK_XValue :
SemaType.cpp 5224 QualType ParamTy = Param->getType();
5225 assert(!ParamTy.isNull() && "Couldn't parse type?");
5230 if (ParamTy->isVoidType()) {
5236 ParamTy = Context.IntTy;
5237 Param->setType(ParamTy);
5241 ParamTy = Context.IntTy;
5242 Param->setType(ParamTy);
5245 if (ParamTy.hasQualifiers())
5251 } else if (ParamTy->isHalfType()) {
5258 << ParamTy << 0
    [all...]
SemaDeclAttr.cpp 801 QualType ParamTy = getFunctionOrMethodParamType(D, Idx.getASTIndex());
802 if (!ParamTy->isIntegerType() && !ParamTy->isCharType()) {
3238 QualType ParamTy = FD->getParamDecl(0)->getType();
3240 ParamTy, Ty) != Sema::Compatible) {
3242 << NI.getName() << ParamTy << Ty;
6159 QualType ParamTy = Param->getType();
6160 if (ParamTy->isReferenceType() || ParamTy->isPointerType())
6161 return !ParamTy->getPointeeType().isConstQualified()
    [all...]
SemaChecking.cpp 1327 QualType ParamTy = [&]() {
1337 TheCall->setType(ParamTy);
1340 if (!ParamTy->isPointerType())
1342 if (ParamTy->isFunctionPointerType())
1344 if (ParamTy->isVoidPointerType())
1360 if (S.RequireCompleteType(TheCall->getBeginLoc(), ParamTy->getPointeeType(),
1364 assert(ParamTy->getPointeeType()->isObjectType() &&
1368 InitializedEntity::InitializeParameter(S.Context, ParamTy, false);
4557 QualType ParamTy) {
4560 if (!ParamTy->isPointerType() && !ParamTy->isReferenceType()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprCXX.cpp 924 QualType ParamTy =
926 if (ParamTy->isPointerType())
928 if (ParamTy->isAnyCharacterType())
930 if (ParamTy->isIntegerType())
932 if (ParamTy->isFloatingType())
ItaniumMangle.cpp 3248 QualType ParamTy = Proto->getParamType(I);
3249 mangleType(Context.getASTContext().getSignatureParameterType(ParamTy));
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGNonTrivialStruct.cpp 311 QualType ParamTy = Ctx.getPointerType(Ctx.VoidPtrTy);
315 Ctx, nullptr, SourceLocation(), &Ctx.Idents.get(ValNameStr[I]), ParamTy,
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 615 QualType ParamTy = PVD->getType();
616 if (ParamTy.isNull() ||
617 (!ParamTy->isPointerType() && !ParamTy->isReferenceType()))
619 QualType Pointee = ParamTy->getPointeeType();
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyLowerEmscriptenEHSjLj.cpp 326 for (Type *ParamTy : FTy->params())
327 OS << "_" << *ParamTy;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 2547 Type *ParamTy = FT->getParamType(i);
2550 if (!CastInst::isBitOrNoopPointerCastable(ActTy, ParamTy, DL))
2554 .overlaps(AttributeFuncs::typeIncompatible(ParamTy)))
2565 if (ParamTy != ActTy && CallerPAL.hasParamAttribute(i, Attribute::ByVal)) {
2566 PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy);
2627 Type *ParamTy = FT->getParamType(i);
2630 if ((*AI)->getType() != ParamTy)
2631 NewArg = Builder.CreateBitOrPointerCast(*AI, ParamTy);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp 2399 auto *ParamTy =
2402 ParamTy && (ParamTy->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS ||
2403 ParamTy->getAddressSpace() == AMDGPUAS::REGION_ADDRESS)) {

Completed in 111 milliseconds