Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp2066 RetType{SizeTy}), in initFunctionSummaries()
2114 RetType{Ssize_tTy}), in initFunctionSummaries()
2266 RetType{IntTy}), in initFunctionSummaries()
2390 RetType{IntTy}), in initFunctionSummaries()
2431 RetType{IntTy}), in initFunctionSummaries()
2468 RetType{IntTy}), in initFunctionSummaries()
2619 RetType{IntTy}), in initFunctionSummaries()
2638 RetType{IntTy}), in initFunctionSummaries()
2662 RetType{IntTy}), in initFunctionSummaries()
2956 RetType{Ssize_tTy}), in initFunctionSummaries()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcessStructReader.h82 template <typename RetType>
83 RetType GetField(llvm::StringRef name, RetType fail_value = RetType()) {
88 if (sizeof(RetType) < size)
93 return (RetType)(m_data.GetMaxU64(&offset, size));
/freebsd/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/contrib/llvm-project/llvm/include/llvm/IR/
H A DVectorBuilder.h54 template <typename RetType>
55 RetType returnWithError(const char *ErrorMsg) const { in returnWithError()
57 return RetType(); in returnWithError()
H A DMatrixBuilder.h69 auto *RetType = FixedVectorType::get(EltTy, Rows * Columns);
73 Type *OverloadedTypes[] = {RetType, Stride->getType()};
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsOs16.cpp51 Type* RetType = F.getReturnType(); in needsFPFromSig() local
52 switch (RetType->getTypeID()) { in needsFPFromSig()
H A DMips16HardFloat.cpp172 Type* RetType = F.getReturnType(); in needsFPReturnHelper() local
173 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
177 Type* RetType = FT.getReturnType(); in needsFPReturnHelper() local
178 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
H A DMipsAsmPrinter.cpp955 const char *RetType; in EmitFPCallStub() local
963 RetType = "float"; in EmitFPCallStub()
966 RetType = "double"; in EmitFPCallStub()
969 RetType = "complex"; in EmitFPCallStub()
972 RetType = "double complex"; in EmitFPCallStub()
975 RetType = ""; in EmitFPCallStub()
1002 OutStreamer->AddComment("\t# Stub function to call " + Twine(RetType) + " " + in EmitFPCallStub()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp540 Type *RetType = F.getReturnType(); in createTailRecurseLoopHeader() local
541 if (!RetType->isVoidTy()) { in createTailRecurseLoopHeader()
543 RetPN = PHINode::Create(RetType, 2, "ret.tr"); in createTailRecurseLoopHeader()
548 RetPN->addIncoming(PoisonValue::get(RetType), NewEntry); in createTailRecurseLoopHeader()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp332 static Expr *maybeTailCall(Sema &S, QualType RetType, Expr *E, in maybeTailCall() argument
334 if (RetType->isReferenceType()) in maybeTailCall()
336 Type const *T = RetType.getTypePtr(); in maybeTailCall()
514 QualType RetType = AwaitSuspend->getCallReturnType(S.Context); in buildCoawaitCalls() local
522 maybeTailCall(S, RetType, AwaitSuspend, Loc)) in buildCoawaitCalls()
531 if (RetType->isReferenceType() || in buildCoawaitCalls()
532 (!RetType->isBooleanType() && !RetType->isVoidType())) { in buildCoawaitCalls()
535 << RetType; in buildCoawaitCalls()
H A DSemaRISCVVectorLookup.cpp413 QualType RetType = RVVType2Qual(Context, ReturnType); in CreateRVVIntrinsicDecl() local
427 BuiltinFuncType = Context.getFunctionType(RetType, ArgTypes, PI); in CreateRVVIntrinsicDecl()
/freebsd/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/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVGlobalRegistry.h211 SPIRVType *getOpTypeFunction(SPIRVType *RetType,
310 const Type *Ty, SPIRVType *RetType,
H A DSPIRVPrepareFunctions.cpp331 Type *RetType = IsRetAggr ? B.getInt32Ty() : F->getReturnType(); in removeAggregateTypesFromSignature() local
344 FunctionType::get(RetType, ArgTypes, F->getFunctionType()->isVarArg()); in removeAggregateTypesFromSignature()
H A DSPIRVCallLowering.cpp475 SPIRVType *RetType = in lowerCall() local
481 .addUse(GR->getSPIRVTypeID(RetType)) in lowerCall()
H A DSPIRVGlobalRegistry.cpp620 SPIRVType *RetType, const SmallVectorImpl<SPIRVType *> &ArgTypes, in getOpTypeFunction() argument
624 .addUse(getSPIRVTypeID(RetType)); in getOpTypeFunction()
631 const Type *Ty, SPIRVType *RetType, in getOrCreateOpTypeFunctionWithArgs() argument
637 SPIRVType *SpirvType = getOpTypeFunction(RetType, ArgTypes, MIRBuilder); in getOrCreateOpTypeFunctionWithArgs()
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DRandomIRBuilder.cpp401 Type *RetType = randomType(); in createFunctionDeclaration() local
408 Function *F = Function::Create(FunctionType::get(RetType, Args, in createFunctionDeclaration()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp1027 DIType *RetType = nullptr; in solveDIType() local
1031 RetType = Builder.createBasicType(Name, BitWidth, dwarf::DW_ATE_signed, in solveDIType()
1034 RetType = Builder.createBasicType(Name, Layout.getTypeSizeInBits(Ty), in solveDIType()
1045 RetType = in solveDIType()
1070 RetType = DIStruct; in solveDIType()
1078 RetType = CharSizeType; in solveDIType()
1083 RetType = Builder.createArrayType( in solveDIType()
1089 DITypeCache.insert({Ty, RetType}); in solveDIType()
1090 return RetType; in solveDIType()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp1770 auto *RetType = cast<IntegerType>(Call.CB.getType()); in applyVirtualConstProp() local
1773 if (RetType->getBitWidth() == 1) { in applyVirtualConstProp()
1781 Value *Val = B.CreateLoad(RetType, Addr); in applyVirtualConstProp()
1800 auto RetType = dyn_cast<IntegerType>(Fn->getReturnType()); in tryVirtualConstProp() local
1801 if (!RetType) in tryVirtualConstProp()
1803 unsigned BitWidth = RetType->getBitWidth(); in tryVirtualConstProp()
1829 Fn->getReturnType() != RetType) in tryVirtualConstProp()
/freebsd/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()
1479 WebAssembly::BlockType RetType = in fixEndsAtEndOfFunction() local
1510 EndToBegin[&MI]->getOperand(0).setImm(int32_t(RetType)); in fixEndsAtEndOfFunction()
/freebsd/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/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp363 static void BeginEmitFunction(raw_ostream &OS, StringRef RetType, in BeginEmitFunction() argument
366 OS << RetType << ' ' << Decl; in BeginEmitFunction()
372 OS << RetType << " DAGISEL_CLASS_COLONCOLON " << Decl << "\n"; in BeginEmitFunction()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCasting.h44 using RetType =
47 static RetType getSimplifiedValue(const From &Val) {
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp6031 Type *RetType = nullptr; in parseFunctionHeader() local
6070 if (!FunctionType::isValidReturnType(RetType)) in parseFunctionHeader()
6828 bool LLParser::resolveFunctionType(Type *RetType, in resolveFunctionType() argument
6831 FuncTy = dyn_cast<FunctionType>(RetType); in resolveFunctionType()
6838 if (!FunctionType::isValidReturnType(RetType)) in resolveFunctionType()
6856 Type *RetType = nullptr; in parseInvoke() local
6880 if (resolveFunctionType(RetType, ArgList, Ty)) in parseInvoke()
7153 Type *RetType = nullptr; in parseCallBr() local
7194 if (resolveFunctionType(RetType, ArgList, Ty)) in parseCallBr()
7559 Type *RetType = nullptr; in parseCall() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp344 auto RetType = Elements[0]; in completeType() local
345 BTFType.Type = RetType ? BDebug.getTypeId(RetType) : 0; in completeType()

12