| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | VectorBuilder.cpp | 54 Value *VectorBuilder::createVectorInstruction(unsigned Opcode, Type *ReturnTy, in createVectorInstruction() argument 97 ReturnTy, IntrinParams); in createVectorInstruction()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | HLSLExternalSemaSource.cpp | 227 QualType ReturnTy = ElemTy; in addArraySubscriptOperator() local 233 ReturnTy = AST.getLValueReferenceType(ReturnTy); in addArraySubscriptOperator() 236 ReturnTy.addConst(); in addArraySubscriptOperator() 240 AST.getFunctionType(ReturnTy, {AST.UnsignedIntTy}, ExtInfo); in addArraySubscriptOperator()
|
| H A D | SemaCodeComplete.cpp | 9560 ParsedType ReturnTy) { in CodeCompleteObjCMethodDecl() argument 9563 QualType ReturnType = GetTypeFromParser(ReturnTy); in CodeCompleteObjCMethodDecl() 9736 Scope *S, bool IsInstanceMethod, bool AtParameterName, ParsedType ReturnTy, in CodeCompleteObjCMethodDeclSelector() argument 9757 if (ReturnTy) in CodeCompleteObjCMethodDeclSelector() 9758 Results.setPreferredType(GetTypeFromParser(ReturnTy).getNonReferenceType()); in CodeCompleteObjCMethodDeclSelector()
|
| H A D | SemaDecl.cpp | 15243 ArrayRef<ParmVarDecl *> Parameters, QualType ReturnTy, NamedDecl *D) { in DiagnoseSizeOfParametersAndReturnValue() argument 15249 if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) { in DiagnoseSizeOfParametersAndReturnValue() 15250 unsigned Size = Context.getTypeSizeInChars(ReturnTy).getQuantity(); in DiagnoseSizeOfParametersAndReturnValue()
|
| H A D | SemaChecking.cpp | 808 QualType ReturnTy = CE->getCallReturnType(S.Context); in SemaBuiltinCallWithStaticChain() local 809 QualType ArgTys[2] = { ReturnTy, ChainResult.get()->getType() }; in SemaBuiltinCallWithStaticChain() 811 ReturnTy, ArgTys, FunctionProtoType::ExtProtoInfo()); in SemaBuiltinCallWithStaticChain()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | VectorBuilder.h | 92 Value *createVectorInstruction(unsigned Opcode, Type *ReturnTy,
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/lli/ |
| H A D | lli.cpp | 386 Type *ReturnTy; in addCygMingExtraModule() local 388 ReturnTy = Type::getInt64Ty(Context); in addCygMingExtraModule() 390 ReturnTy = Type::getInt32Ty(Context); in addCygMingExtraModule() 392 Function::Create(FunctionType::get(ReturnTy, {}, false), in addCygMingExtraModule() 397 Value *ReturnVal = ConstantInt::get(ReturnTy, 0); in addCygMingExtraModule()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGBlocks.cpp | 1874 QualType ReturnTy = C.VoidTy; in GenerateCopyHelperFunction() local 1883 CGM.getTypes().arrangeBuiltinFunctionDeclaration(ReturnTy, args); in GenerateCopyHelperFunction() 1901 StartFunction(GlobalDecl(), ReturnTy, Fn, FI, args); in GenerateCopyHelperFunction() 2061 QualType ReturnTy = C.VoidTy; in GenerateDestroyHelperFunction() local 2068 CGM.getTypes().arrangeBuiltinFunctionDeclaration(ReturnTy, args); in GenerateDestroyHelperFunction() 2085 StartFunction(GlobalDecl(), ReturnTy, Fn, FI, args); in GenerateDestroyHelperFunction() 2303 QualType ReturnTy = Context.VoidTy; in generateByrefCopyHelper() local 2313 CGF.CGM.getTypes().arrangeBuiltinFunctionDeclaration(ReturnTy, args); in generateByrefCopyHelper() 2329 CGF.StartFunction(GlobalDecl(), ReturnTy, Fn, FI, args); in generateByrefCopyHelper()
|
| H A D | CGObjC.cpp | 3722 QualType ReturnTy = C.VoidTy; in GenerateObjCAtomicSetterCopyHelperFunction() local 3731 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicSetterCopyHelperFunction() 3752 CGM.getTypes().arrangeBuiltinFunctionDeclaration(ReturnTy, args); in GenerateObjCAtomicSetterCopyHelperFunction() 3763 StartFunction(FD, ReturnTy, Fn, FI, args); in GenerateObjCAtomicSetterCopyHelperFunction() 3820 QualType ReturnTy = C.VoidTy; in GenerateObjCAtomicGetterCopyHelperFunction() local 3829 QualType FunctionTy = C.getFunctionType(ReturnTy, ArgTys, {}); in GenerateObjCAtomicGetterCopyHelperFunction() 3850 CGM.getTypes().arrangeBuiltinFunctionDeclaration(ReturnTy, args); in GenerateObjCAtomicGetterCopyHelperFunction() 3860 StartFunction(FD, ReturnTy, Fn, FI, args); in GenerateObjCAtomicGetterCopyHelperFunction()
|
| H A D | CodeGenFunction.h | 4342 llvm::Value *EmitSVEMaskedLoad(const CallExpr *, llvm::Type *ReturnTy,
|
| H A D | CGBuiltin.cpp | 2095 QualType ReturnTy = Ctx.VoidTy; in generateBuiltinOSLogHelperFunction() local 2101 CGM.getTypes().arrangeBuiltinFunctionDeclaration(ReturnTy, Args); in generateBuiltinOSLogHelperFunction() 2115 StartFunction(GlobalDecl(), ReturnTy, Fn, FI, Args); in generateBuiltinOSLogHelperFunction() 9862 llvm::Type *ReturnTy, in EmitSVEMaskedLoad() argument 9872 auto VectorTy = cast<llvm::ScalableVectorType>(ReturnTy); in EmitSVEMaskedLoad()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | ExprEngineCXX.cpp | 244 QualType ReturnTy = RetE->getType(); in computeObjectUnderConstruction() local 245 QualType RegionTy = ACtx.getPointerType(ReturnTy); in computeObjectUnderConstruction()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | InstrProfiling.cpp | 774 auto *ReturnTy = Type::getVoidTy(M.getContext()); in getOrInsertValueProfilingCall() local 788 FunctionType::get(ReturnTy, ArrayRef(ParamTypes), false); in getOrInsertValueProfilingCall()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.h | 414 Type *ReturnTy, AttributeSet RetAttrs,
|
| H A D | SelectionDAGBuilder.cpp | 9905 unsigned ArgIdx, unsigned NumArgs, SDValue Callee, Type *ReturnTy, in populateCallLoweringInfo() argument 9927 .setCallee(Call->getCallingConv(), ReturnTy, Callee, std::move(Args), in populateCallLoweringInfo() 10072 Type *ReturnTy = in visitPatchpoint() local 10077 ReturnTy, CB.getAttributes().getRetAttrs(), true); in visitPatchpoint()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ItaniumMangle.cpp | 3588 QualType ReturnTy = Proto->getReturnType(); in mangleBareFunctionType() local 3589 if (ReturnTy.getObjCLifetime()) { in mangleBareFunctionType() 3590 auto SplitReturnTy = ReturnTy.split(); in mangleBareFunctionType() 3592 ReturnTy = getASTContext().getQualifiedType(SplitReturnTy); in mangleBareFunctionType() 3594 mangleType(ReturnTy); in mangleBareFunctionType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.cpp | 428 const DIType *ReturnTy = nullptr; in getFunctionOptions() local 431 ReturnTy = TypeArray[0]; in getFunctionOptions() 436 if (auto *ReturnDCTy = dyn_cast_or_null<DICompositeType>(ReturnTy)) in getFunctionOptions()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 3189 QualType ReturnTy, NamedDecl *D);
|