Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h458 buildReturnTypeVectorFromTypeList(std::vector<ASTNodeKind> &RetTypes) {
459 RetTypes.push_back(ASTNodeKind::getFromNodeKind<typename T::head>());
460 buildReturnTypeVectorFromTypeList<typename T::tail>(RetTypes);
466 std::vector<ASTNodeKind> &RetTypes) {}
470 static void build(std::vector<ASTNodeKind> &RetTypes) {
471 buildReturnTypeVectorFromTypeList<typename T::ReturnTypes>(RetTypes);
477 static void build(std::vector<ASTNodeKind> &RetTypes) {
478 RetTypes.push_back(ASTNodeKind::getFromNodeKind<T>());
484 static void build(std::vector<ASTNodeKind> &RetTypes) {
485 RetTypes.push_back(ASTNodeKind::getFromNodeKind<T>());
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp781 std::vector<Type*> RetTypes; in RemoveDeadStuffFromFunction() local
809 RetTypes.push_back(getRetComponentType(F, Ri)); in RemoveDeadStuffFromFunction()
810 NewRetIdxs[Ri] = RetTypes.size() - 1; in RemoveDeadStuffFromFunction()
818 if (RetTypes.size() > 1) { in RemoveDeadStuffFromFunction()
823 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked()); in RemoveDeadStuffFromFunction()
826 NRetTy = ArrayType::get(RetTypes[0], RetTypes.size()); in RemoveDeadStuffFromFunction()
828 } else if (RetTypes.size() == 1) in RemoveDeadStuffFromFunction()
831 NRetTy = RetTypes.front(); in RemoveDeadStuffFromFunction()
832 else if (RetTypes.empty()) in RemoveDeadStuffFromFunction()
987 if (RetTypes.size() > 1) in RemoveDeadStuffFromFunction()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenTarget.cpp704 ListInit *RetTypes = R->getValueAsListInit("RetTypes"); in CodeGenIntrinsic() local
709 for (ListInit *TypeList : {RetTypes, ParamTypes}) { in CodeGenIntrinsic()
726 ListInit *TypeList = RetTypes; in CodeGenIntrinsic()
/netbsd-src/external/apache2/llvm/dist/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;
/netbsd-src/external/apache2/llvm/dist/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()