Searched refs:RetType (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp934 using RetType = QualType;
937 return Summary(ArgTypes{*FilePtrTy}, RetType{IntTy}, NoEvalCall)
941 auto Read = [&](RetType R, RangeInt Max) {
942 return Summary(ArgTypes{Irrelevant, Irrelevant, SizeTy}, RetType{R},
950 RetType{SizeTy}, NoEvalCall)
959 RetType{SizeTy}, NoEvalCall)
965 auto Getline = [&](RetType R, RangeInt Max) {
966 return Summary(ArgTypes{Irrelevant, Irrelevant, Irrelevant}, RetType{R},
977 Summary(ArgTypes{IntTy}, RetType{IntTy}, EvalCallAsPure)
995 Summary(ArgTypes{IntTy}, RetType{IntT
[all...]
H A DNullabilityChecker.cpp862 QualType RetType = Decl->getReturnType();
863 if (!RetType->isAnyPointerType())
948 Nullability RetNullability = getNullabilityAnnotation(RetType);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcessStructReader.h81 template <typename RetType>
82 RetType GetField(ConstString name, RetType fail_value = RetType()) { argument
87 if (sizeof(RetType) < size)
92 return (RetType)(m_data.GetMaxU64(&offset, size));
/freebsd-13-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsxfobj.c168 * RetType - Where the type will be placed
180 ACPI_OBJECT_TYPE *RetType)
188 if (!RetType)
197 *RetType = ACPI_TYPE_ANY;
216 *RetType = Node->Type;
178 AcpiGetType( ACPI_HANDLE Handle, ACPI_OBJECT_TYPE *RetType) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsOs16.cpp50 Type* RetType = F.getReturnType(); local
51 switch (RetType->getTypeID()) {
H A DMips16HardFloat.cpp171 Type* RetType = F.getReturnType(); local
172 return whichFPReturnVariant(RetType) != NoFPRet;
176 Type* RetType = FT.getReturnType(); local
177 return whichFPReturnVariant(RetType) != NoFPRet;
H A DMipsAsmPrinter.cpp994 const char *RetType; local
1002 RetType = "float";
1005 RetType = "double";
1008 RetType = "complex";
1011 RetType = "double complex";
1014 RetType = "";
1041 OutStreamer->AddComment("\t# Stub function to call " + Twine(RetType) + " " +
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h68 auto *RetType = FixedVectorType::get(EltTy, Rows * Columns); local
72 Type *OverloadedTypes[] = {RetType};
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp377 static Expr *maybeTailCall(Sema &S, QualType RetType, Expr *E, argument
379 if (RetType->isReferenceType())
381 Type const *T = RetType.getTypePtr();
453 QualType RetType = AwaitSuspend->getCallReturnType(S.Context); local
456 if (Expr *TailCallSuspend = maybeTailCall(S, RetType, AwaitSuspend, Loc))
460 if (RetType->isReferenceType() ||
461 (!RetType->isBooleanType() && !RetType->isVoidType())) {
464 << RetType;
H A DSemaTemplateDeduction.cpp4951 QualType RetType = getLambdaConversionFunctionResultType( local
4954 RetType = Context.getPointerType(RetType);
4957 RetType = Context.getBlockPointerType(RetType);
4959 Context.adjustDeducedFunctionResultType(FD, RetType);
H A DSemaStmt.cpp3794 QualType RetType = RelatedRetType.isNull() ? FnRetType : RelatedRetType; local
3807 RetType,
3810 RetType, RetValExp);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DConsumed.cpp686 QualType RetType = Fun->getCallResultType(); local
687 if (RetType->isReferenceType())
688 RetType = RetType->getPointeeType();
690 if (isConsumableType(RetType)) {
695 ReturnState = mapConsumableAttrState(RetType);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp539 Type *RetType = F.getReturnType();
540 if (!RetType->isVoidTy()) {
542 RetPN = PHINode::Create(RetType, 2, "ret.tr", InsertPos);
545 RetPN->addIncoming(UndefValue::get(RetType), NewEntry);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp517 Type *RetType = T->getReturnType(); local
518 if (!RetType->isVoidTy())
519 RetType = StructType::get(RetType, ShadowTy);
520 return FunctionType::get(RetType, ArgTypes, T->isVarArg());
529 Type *RetType = T->getReturnType(); local
530 if (!RetType->isVoidTy())
560 Type *RetType = T->getReturnType(); local
561 if (!RetType->isVoidTy())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp1531 auto *RetType = cast<IntegerType>(Call.CB.getType()); local
1535 if (RetType->getBitWidth() == 1) {
1542 Value *ValAddr = B.CreateBitCast(Addr, RetType->getPointerTo());
1543 Value *Val = B.CreateLoad(RetType, ValAddr);
1555 auto RetType = dyn_cast<IntegerType>(TargetsForSlot[0].Fn->getReturnType()); local
1556 if (!RetType)
1558 unsigned BitWidth = RetType->getBitWidth();
1577 Target.Fn->getReturnType() != RetType)
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCasting.h44 using RetType =
47 static RetType getSimplifiedValue(const From& Val) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp105 template <typename ArgType, typename RetType>
106 RetType PrivateGetDIAValue(IDiaSymbol *Symbol,
110 return static_cast<RetType>(Value);
112 return RetType();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp717 int64_t RetType = Try->getOperand(0).getImm(); local
722 std::prev(B)->getOperand(0).getImm() == RetType;
1362 WebAssembly::BlockType RetType =
1376 EndToBegin[&MI]->getOperand(0).setImm(int32_t(RetType));
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp222 static void BeginEmitFunction(raw_ostream &OS, StringRef RetType, argument
225 OS << RetType << ' ' << Decl;
231 OS << RetType << " DAGISEL_CLASS_COLONCOLON " << Decl << "\n";
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp288 auto RetType = Elements[0]; local
289 BTFType.Type = RetType ? BDebug.getTypeId(RetType) : 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp5438 Type *RetType = nullptr;
5443 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
5473 if (!FunctionType::isValidReturnType(RetType))
5556 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
5560 FunctionType::get(RetType, ParamTypeList, isVarArg);
6170 Type *RetType = nullptr;
6179 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
6190 // If RetType is a non-function pointer type, then this is the short syntax
6191 // for the call, which means that RetType is just the return type. Infer the
6193 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibCalls.cpp1415 Type *RetType = UCallee->getReturnType(); local
1417 AllocaInst *Alloc = B.CreateAlloca(RetType, 0,
1420 Align(UCallee->getParent()->getDataLayout().getTypeAllocSize(RetType)));
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp1367 QualType RetType; local
1369 RetType = Call->getCallReturnType(CGF->getContext());
1371 RetType = Ctor->getType();
1373 emitAbstract(CE->getBeginLoc(), CE->getAPValueResult(), RetType);
H A DCGClass.cpp2261 QualType RetType = BuildFunctionArgList(CurGD, Params); local
2262 FnRetTy = RetType;
2284 if (!RetType->isVoidType())
2285 ReturnValue = CreateIRTemp(RetType, "retval.inhctor");
H A DCGOpenMPRuntime.cpp10406 QualType RetType = FD->getReturnType(); local
10407 if (RetType.isNull())
10411 if (!RetType.isNull() && !RetType->isVoidType()) {
10412 CDT = RetType;
10585 QualType RetType = FD->getReturnType().getCanonicalType(); local
10592 if (!RetType->isVoidType()) {
10593 Sizes.push_back(getAArch64LS(RetType, ParamKindTy::Vector, C));
10594 if (!getAArch64PBV(RetType, C) && getAArch64MTV(RetType, {}))
[all...]

Completed in 524 milliseconds

12