Home
last modified time | relevance | path

Searched refs:RetType (Results 1 – 25 of 31) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp1379 RetType{SizeTy}), in initFunctionSummaries()
1425 RetType{Ssize_tTy}), in initFunctionSummaries()
1466 RetType{IntTy}), in initFunctionSummaries()
1499 RetType{IntTy}), in initFunctionSummaries()
1534 RetType{IntTy}), in initFunctionSummaries()
1656 RetType{IntTy}), in initFunctionSummaries()
1672 RetType{IntTy}), in initFunctionSummaries()
1694 RetType{IntTy}), in initFunctionSummaries()
1752 RetType{IntTy}), in initFunctionSummaries()
1792 RetType{IntTy}), in initFunctionSummaries()
[all …]
H A DNullabilityChecker.cpp862 QualType RetType = Decl->getReturnType(); in checkPostObjCMessage() local
863 if (!RetType->isAnyPointerType()) in checkPostObjCMessage()
948 Nullability RetNullability = getNullabilityAnnotation(RetType); in checkPostObjCMessage()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcessStructReader.h81 template <typename RetType>
82 RetType GetField(ConstString name, RetType fail_value = RetType()) {
87 if (sizeof(RetType) < size)
92 return (RetType)(m_data.GetMaxU64(&offset, size));
/freebsd-13.1/sys/contrib/dev/acpica/components/namespace/
H A Dnsxfobj.c180 ACPI_OBJECT_TYPE *RetType) in AcpiGetType() argument
188 if (!RetType) in AcpiGetType()
197 *RetType = ACPI_TYPE_ANY; in AcpiGetType()
216 *RetType = Node->Type; in AcpiGetType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsOs16.cpp50 Type* RetType = F.getReturnType(); in needsFPFromSig() local
51 switch (RetType->getTypeID()) { in needsFPFromSig()
H A DMips16HardFloat.cpp171 Type* RetType = F.getReturnType(); in needsFPReturnHelper() local
172 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
176 Type* RetType = FT.getReturnType(); in needsFPReturnHelper() local
177 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
H A DMipsAsmPrinter.cpp994 const char *RetType; in EmitFPCallStub() local
1002 RetType = "float"; in EmitFPCallStub()
1005 RetType = "double"; in EmitFPCallStub()
1008 RetType = "complex"; in EmitFPCallStub()
1011 RetType = "double complex"; in EmitFPCallStub()
1014 RetType = ""; in EmitFPCallStub()
1041 OutStreamer->AddComment("\t# Stub function to call " + Twine(RetType) + " " + in EmitFPCallStub()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp357 static Expr *maybeTailCall(Sema &S, QualType RetType, Expr *E, in maybeTailCall() argument
359 if (RetType->isReferenceType()) in maybeTailCall()
361 Type const *T = RetType.getTypePtr(); in maybeTailCall()
460 QualType RetType = AwaitSuspend->getCallReturnType(S.Context); in buildCoawaitCalls() local
464 maybeTailCall(S, RetType, AwaitSuspend, Loc)) in buildCoawaitCalls()
473 if (RetType->isReferenceType() || in buildCoawaitCalls()
474 (!RetType->isBooleanType() && !RetType->isVoidType())) { in buildCoawaitCalls()
477 << RetType; in buildCoawaitCalls()
H A DSemaTemplateDeduction.cpp5019 QualType RetType = getLambdaConversionFunctionResultType( in DeduceReturnType() local
5022 RetType = Context.getPointerType(RetType); in DeduceReturnType()
5025 RetType = Context.getBlockPointerType(RetType); in DeduceReturnType()
5027 Context.adjustDeducedFunctionResultType(FD, RetType); in DeduceReturnType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp537 Type *RetType = F.getReturnType(); in createTailRecurseLoopHeader() local
538 if (!RetType->isVoidTy()) { in createTailRecurseLoopHeader()
540 RetPN = PHINode::Create(RetType, 2, "ret.tr", InsertPos); in createTailRecurseLoopHeader()
543 RetPN->addIncoming(UndefValue::get(RetType), NewEntry); in createTailRecurseLoopHeader()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h73 auto *RetType = FixedVectorType::get(EltTy, Rows * Columns);
77 Type *OverloadedTypes[] = {RetType};
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DConsumed.cpp686 QualType RetType = Fun->getCallResultType(); in propagateReturnType() local
687 if (RetType->isReferenceType()) in propagateReturnType()
688 RetType = RetType->getPointeeType(); in propagateReturnType()
690 if (isConsumableType(RetType)) { in propagateReturnType()
695 ReturnState = mapConsumableAttrState(RetType); in propagateReturnType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp795 Type *RetType = T->getReturnType(); in getArgsFunctionType() local
796 if (!RetType->isVoidTy()) in getArgsFunctionType()
797 RetType = StructType::get(RetType, PrimitiveShadowTy); in getArgsFunctionType()
807 Type *RetType = T->getReturnType(); in getTrampolineFunctionType() local
808 if (!RetType->isVoidTy()) in getTrampolineFunctionType()
813 if (!RetType->isVoidTy()) in getTrampolineFunctionType()
845 Type *RetType = T->getReturnType(); in getCustomFunctionType() local
846 if (!RetType->isVoidTy()) in getCustomFunctionType()
854 if (!RetType->isVoidTy()) in getCustomFunctionType()
1216 if (!RetType->isVoidTy()) in getOrBuildTrampolineFunction()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp1602 auto *RetType = cast<IntegerType>(Call.CB.getType()); in applyVirtualConstProp() local
1606 if (RetType->getBitWidth() == 1) { in applyVirtualConstProp()
1613 Value *ValAddr = B.CreateBitCast(Addr, RetType->getPointerTo()); in applyVirtualConstProp()
1614 Value *Val = B.CreateLoad(RetType, ValAddr); in applyVirtualConstProp()
1626 auto RetType = dyn_cast<IntegerType>(TargetsForSlot[0].Fn->getReturnType()); in tryVirtualConstProp() local
1627 if (!RetType) in tryVirtualConstProp()
1629 unsigned BitWidth = RetType->getBitWidth(); in tryVirtualConstProp()
1648 Target.Fn->getReturnType() != RetType) in tryVirtualConstProp()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DCasting.h44 using RetType =
47 static RetType getSimplifiedValue(const From& Val) {
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp851 DIType *RetType = nullptr; in solveDIType() local
855 RetType = Builder.createBasicType(Name, BitWidth, dwarf::DW_ATE_signed, in solveDIType()
858 RetType = Builder.createBasicType(Name, Layout.getTypeSizeInBits(Ty), in solveDIType()
869 RetType = Builder.createBasicType(Name, Layout.getTypeSizeInBits(Ty), in solveDIType()
893 RetType = DIStruct; in solveDIType()
899 RetType = Builder.createBasicType(OS.str(), Layout.getTypeSizeInBits(Ty), in solveDIType()
904 DITypeCache.insert({Ty, RetType}); in solveDIType()
905 return RetType; in solveDIType()
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp314 static void BeginEmitFunction(raw_ostream &OS, StringRef RetType, in BeginEmitFunction() argument
317 OS << RetType << ' ' << Decl; in BeginEmitFunction()
323 OS << RetType << " DAGISEL_CLASS_COLONCOLON " << Decl << "\n"; in BeginEmitFunction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp105 template <typename ArgType, typename RetType>
106 RetType PrivateGetDIAValue(IDiaSymbol *Symbol, in PrivateGetDIAValue()
110 return static_cast<RetType>(Value); in PrivateGetDIAValue()
112 return RetType(); in PrivateGetDIAValue()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp765 int64_t RetType = Try->getOperand(0).getImm(); in removeUnnecessaryInstrs() local
770 std::prev(B)->getOperand(0).getImm() == RetType; in removeUnnecessaryInstrs()
1497 WebAssembly::BlockType RetType = in fixEndsAtEndOfFunction() local
1528 EndToBegin[&MI]->getOperand(0).setImm(int32_t(RetType)); in fixEndsAtEndOfFunction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp5461 Type *RetType = nullptr; in parseFunctionHeader() local
5496 if (!FunctionType::isValidReturnType(RetType)) in parseFunctionHeader()
6249 Type *RetType = nullptr; in parseInvoke() local
6272 FunctionType *Ty = dyn_cast<FunctionType>(RetType); in parseInvoke()
6279 if (!FunctionType::isValidReturnType(RetType)) in parseInvoke()
6558 Type *RetType = nullptr; in parseCallBr() local
6598 FunctionType *Ty = dyn_cast<FunctionType>(RetType); in parseCallBr()
6605 if (!FunctionType::isValidReturnType(RetType)) in parseCallBr()
6977 Type *RetType = nullptr; in parseCall() local
7004 FunctionType *Ty = dyn_cast<FunctionType>(RetType); in parseCall()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp289 auto RetType = Elements[0]; in completeType() local
290 BTFType.Type = RetType ? BDebug.getTypeId(RetType) : 0; in completeType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibCalls.cpp1404 Type *RetType = UCallee->getReturnType(); in insertAlloca() local
1406 AllocaInst *Alloc = B.CreateAlloca(RetType, 0, in insertAlloca()
1409 Align(UCallee->getParent()->getDataLayout().getTypeAllocSize(RetType))); in insertAlloca()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp1370 QualType RetType; in tryEmitConstantExpr() local
1372 RetType = Call->getCallReturnType(CGF->getContext()); in tryEmitConstantExpr()
1374 RetType = Ctor->getType(); in tryEmitConstantExpr()
1376 emitAbstract(CE->getBeginLoc(), CE->getAPValueResult(), RetType); in tryEmitConstantExpr()
H A DCGClass.cpp2262 QualType RetType = BuildFunctionArgList(CurGD, Params); in EmitInlinedInheritingCXXConstructorCall() local
2263 FnRetTy = RetType; in EmitInlinedInheritingCXXConstructorCall()
2285 if (!RetType->isVoidType()) in EmitInlinedInheritingCXXConstructorCall()
2286 ReturnValue = CreateIRTemp(RetType, "retval.inhctor"); in EmitInlinedInheritingCXXConstructorCall()
H A DCGOpenMPRuntime.cpp11431 QualType RetType = FD->getReturnType(); in evaluateCDTSize() local
11432 if (RetType.isNull()) in evaluateCDTSize()
11436 if (!RetType.isNull() && !RetType->isVoidType()) { in evaluateCDTSize()
11437 CDT = RetType; in evaluateCDTSize()
11610 QualType RetType = FD->getReturnType().getCanonicalType(); in getNDSWDS() local
11617 if (!RetType->isVoidType()) { in getNDSWDS()
11618 Sizes.push_back(getAArch64LS(RetType, ParamKindTy::Vector, C)); in getNDSWDS()
11619 if (!getAArch64PBV(RetType, C) && getAArch64MTV(RetType, {})) in getNDSWDS()

12