Home
last modified time | relevance | path

Searched refs:paramTy (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp831 std::vector<Type *> paramTy; in constructFunction() local
836 paramTy.push_back(value->getType()); in constructFunction()
843 paramTy.push_back(output->getType()); in constructFunction()
845 paramTy.push_back(PointerType::getUnqual(output->getType())); in constructFunction()
850 for (Type *i : paramTy) in constructFunction()
857 StructTy = StructType::get(M->getContext(), paramTy); in constructFunction()
858 paramTy.clear(); in constructFunction()
859 paramTy.push_back(PointerType::getUnqual(StructTy)); in constructFunction()
862 FunctionType::get(RetTy, paramTy, in constructFunction()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp2553 QualType paramTy = in ProcessPropertyDecl() local
2560 QualType modifiedTy = paramTy; in ProcessPropertyDecl()
2563 paramTy = Context.getAttributedType(attr::TypeNullable, in ProcessPropertyDecl()
2573 paramTy, in ProcessPropertyDecl()
H A DSemaExprObjC.cpp1732 QualType paramTy; // ignored in CheckMessageArgumentTypes() local
1733 result = checkUnknownAnyArg(SelLoc, Args[i], paramTy); in CheckMessageArgumentTypes()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp1536 for (auto paramTy : FnTy->params()) { in coerceArguments() local
1538 if (paramTy != FnArgs[ArgIdx]->getType()) in coerceArguments()
1540 Builder.CreateBitOrPointerCast(FnArgs[ArgIdx], paramTy)); in coerceArguments()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp9601 QualType paramTy = proto->getParamType(i); in mergeFunctionTypes() local
9605 if (const auto *Enum = paramTy->getAs<EnumType>()) { in mergeFunctionTypes()
9606 paramTy = Enum->getDecl()->getIntegerType(); in mergeFunctionTypes()
9607 if (paramTy.isNull()) in mergeFunctionTypes()
9611 if (paramTy->isPromotableIntegerType() || in mergeFunctionTypes()
9612 getCanonicalType(paramTy).getUnqualifiedType() == FloatTy) in mergeFunctionTypes()