Home
last modified time | relevance | path

Searched refs:RetTypes (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h466 std::vector<ASTNodeKind> &RetTypes) {}
470 static void build(std::vector<ASTNodeKind> &RetTypes) {
1059 std::vector<ASTNodeKind> RetTypes;
1060 BuildReturnTypeVector<ReturnType>::build(RetTypes);
1063 MatcherName, RetTypes, None);
1070 std::vector<ASTNodeKind> RetTypes;
1071 BuildReturnTypeVector<ReturnType>::build(RetTypes);
1083 std::vector<ASTNodeKind> RetTypes;
1084 BuildReturnTypeVector<ReturnType>::build(RetTypes);
1096 std::vector<ASTNodeKind> RetTypes;
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp782 std::vector<Type*> RetTypes; in RemoveDeadStuffFromFunction() local
810 RetTypes.push_back(getRetComponentType(F, Ri)); in RemoveDeadStuffFromFunction()
811 NewRetIdxs[Ri] = RetTypes.size() - 1; in RemoveDeadStuffFromFunction()
819 if (RetTypes.size() > 1) { in RemoveDeadStuffFromFunction()
824 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked()); in RemoveDeadStuffFromFunction()
827 NRetTy = ArrayType::get(RetTypes[0], RetTypes.size()); in RemoveDeadStuffFromFunction()
829 } else if (RetTypes.size() == 1) in RemoveDeadStuffFromFunction()
832 NRetTy = RetTypes.front(); in RemoveDeadStuffFromFunction()
833 else if (RetTypes.empty()) in RemoveDeadStuffFromFunction()
988 if (RetTypes.size() > 1) in RemoveDeadStuffFromFunction()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenTarget.cpp719 ListInit *RetTypes = R->getValueAsListInit("RetTypes"); in CodeGenIntrinsic() local
724 for (ListInit *TypeList : {RetTypes, ParamTypes}) { in CodeGenIntrinsic()
741 ListInit *TypeList = RetTypes; in CodeGenIntrinsic()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicsAMDGPU.td618 list<LLVMType> RetTypes = [];
625 !foldl(0, !listconcat(RetTypes, !foreach(arg, DataArgs, arg.Type)), a, b,
652 let RetTypes = base.RetTypes;
663 let RetTypes = [llvm_any_ty];
674 let RetTypes = retty;
682 let RetTypes = [llvm_anyint_ty];
688 let RetTypes = [llvm_anyfloat_ty];
721 P_.RetTypes, // vdata(VGPR) -- for load/atomic-with-return
H A DIntrinsics.td341 // * RetTypes is a list containing the return types expected for the
355 list<LLVMType> RetTypes = ret_types;
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaLookup.cpp727 SmallVector<QualType, 1> &RetTypes, in GetQualTypesForOpenCLBuiltin() argument
731 OCL2Qual(S, TypeTable[Sig], RetTypes); in GetQualTypesForOpenCLBuiltin()
732 GenTypeMaxCnt = RetTypes.size(); in GetQualTypesForOpenCLBuiltin()
756 std::vector<QualType> &FunctionList, SmallVector<QualType, 1> &RetTypes, in GetOpenCLBuiltinFctOverloads() argument
764 if (RetTypes.size() == 0) in GetOpenCLBuiltinFctOverloads()
786 RetTypes[(RetTypes.size() != 1) ? IGenType : 0], ArgList, PI)); in GetOpenCLBuiltinFctOverloads()
840 SmallVector<QualType, 1> RetTypes; in InsertOCLBuiltinDeclarationsFromTable() local
844 GetQualTypesForOpenCLBuiltin(S, OpenCLBuiltin, GenTypeMaxCnt, RetTypes, in InsertOCLBuiltinDeclarationsFromTable()
852 GetOpenCLBuiltinFctOverloads(Context, GenTypeMaxCnt, FunctionList, RetTypes, in InsertOCLBuiltinDeclarationsFromTable()