Home
last modified time | relevance | path

Searched refs:retType (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/TableGen/
H A DClass.h120 MethodSignature(RetTypeT &&retType, NameT &&name, in MethodSignature() argument
122 : returnType(stringify(std::forward<RetTypeT>(retType))), in MethodSignature()
128 MethodSignature(RetTypeT &&retType, NameT &&name, in MethodSignature() argument
130 : MethodSignature(std::forward<RetTypeT>(retType), in MethodSignature()
138 : MethodSignature(std::forward<RetTypeT>(retType), in MethodSignature()
309 Method(RetTypeT &&retType, NameT &&name, Properties properties, in Method() argument
312 methodSignature(std::forward<RetTypeT>(retType), in Method()
317 Method(StringRef retType, StringRef name, Properties properties, in Method() argument
596 Method *addMethod(RetTypeT &&retType, NameT &&name, in addMethod() argument
623 Method *addStaticInlineMethod(RetTypeT &&retType, NameT &&name, in addStaticInlineMethod() argument
[all …]
/llvm-project-15.0.7/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1705 retType, in createStandardUtilityFunctions()
1715 retType = builder.getVoidTy(); in createStandardUtilityFunctions()
1724 retType, in createStandardUtilityFunctions()
1734 retType = builder.getVoidTy(); in createStandardUtilityFunctions()
1742 retType, in createStandardUtilityFunctions()
1752 retType = builder.getVoidTy(); in createStandardUtilityFunctions()
1760 retType, in createStandardUtilityFunctions()
1770 retType = builder.getVoidTy(); in createStandardUtilityFunctions()
1778 retType, in createStandardUtilityFunctions()
1796 retType, in createStandardUtilityFunctions()
[all …]
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Bufferization/IR/
H A DBufferizableOpInterface.td35 /*retType=*/"bool",
53 /*retType=*/"bool",
82 /*retType=*/"bool",
105 /*retType=*/"bool",
132 /*retType=*/"bool",
204 /*retType=*/"BufferRelation",
229 /*retType=*/"LogicalResult",
266 /*retType=*/"LogicalResult",
292 /*retType=*/"bool",
314 /*retType=*/"bool",
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/Tosa/Utils/
H A DQuantUtils.cpp272 quant::QuantizedType retType; in buildQTypeFromMinMax() local
308 retType = quant::fakeQuantAttrsToType( in buildQTypeFromMinMax()
316 retType = quant::fakeQuantAttrsToType( in buildQTypeFromMinMax()
327 if (!retType) in buildQTypeFromMinMax()
330 return convfunc.convert(retType); in buildQTypeFromMinMax()
/llvm-project-15.0.7/mlir/lib/Conversion/GPUToNVVM/
H A DWmmaOpsToNvvm.cpp82 gpu::MMAMatrixType retType = in matchAndRewrite() local
84 ArrayRef<int64_t> retTypeShape = retType.getShape(); in matchAndRewrite()
88 NVVM::MMATypes eltype = getElementType(retType); in matchAndRewrite()
91 if (retType.getOperand().equals("AOp")) { in matchAndRewrite()
95 } else if (retType.getOperand().equals("BOp")) { in matchAndRewrite()
99 } else if (retType.getOperand().equals("COp")) { in matchAndRewrite()
105 NVVM::MMAFrag frag = convertOperand(retType.getOperand()); in matchAndRewrite()
110 Type resType = convertMMAToLLVMType(retType); in matchAndRewrite()
/llvm-project-15.0.7/lldb/source/Plugins/ABI/Hexagon/
H A DABISysV_hexagon.cpp1199 llvm::Type &retType) const { in GetReturnValueObjectImpl()
1215 if (retType.isVoidTy()) { in GetReturnValueObjectImpl()
1219 else if (retType.isIntegerTy() || retType.isPointerTy()) { in GetReturnValueObjectImpl()
1229 if (retType.isIntegerTy() && retType.isSized()) { in GetReturnValueObjectImpl()
1230 uint64_t size = retType.getScalarSizeInBits(); in GetReturnValueObjectImpl()
/llvm-project-15.0.7/mlir/unittests/Dialect/SPIRV/
H A DDeserializationTest.cpp96 uint32_t addFunctionType(uint32_t retType, ArrayRef<uint32_t> paramTypes) { in addFunctionType() argument
100 operands.push_back(retType); in addFunctionType()
106 uint32_t addFunction(uint32_t retType, uint32_t fnType) { in addFunction() argument
109 {retType, id, in addFunction()
/llvm-project-15.0.7/mlir/include/mlir/Interfaces/
H A DTilingInterface.td36 /*retType=*/"SmallVector<Value>",
50 /*retType=*/"SmallVector<StringRef>",
89 /*retType=*/"SmallVector<Operation *>",
110 /*retType=*/"LogicalResult",
151 /*retType=*/"FailureOr<Value>",
/llvm-project-15.0.7/lldb/source/Plugins/ABI/ARC/
H A DABISysV_arc.cpp512 llvm::Type &retType) const { in GetReturnValueObjectImpl()
519 if (retType.isVoidTy()) { in GetReturnValueObjectImpl()
523 else if (retType.isIntegerTy()) { in GetReturnValueObjectImpl()
524 size_t byte_size = retType.getPrimitiveSizeInBits(); in GetReturnValueObjectImpl()
535 else if (retType.isPointerTy()) { in GetReturnValueObjectImpl()
542 else if (retType.isFloatingPointTy()) { in GetReturnValueObjectImpl()
543 const size_t byte_size = retType.getPrimitiveSizeInBits() / CHAR_BIT; in GetReturnValueObjectImpl()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DOpBase.td1080 class TypedSignlessIntegerAttrBase<I attrValType, string retType, string descr>
1082 let returnType = retType;
1109 class TypedSignedIntegerAttrBase<SI attrValType, string retType, string descr>
1111 let returnType = retType;
1138 class TypedUnsignedIntegerAttrBase<UI attrValType, string retType, string descr>
1140 let returnType = retType;
1193 class TypeAttrBase<string retType, string summary> :
1197 # retType # ">()">]>,
1200 let returnType = retType;
1202 let convertFromStorage = "$_self.getValue().cast<" # retType # ">()";
/llvm-project-15.0.7/mlir/tools/mlir-tblgen/
H A DOpDefinitionsGen.cpp1963 StringRef retType = namedAttr->attr.getReturnType(); in buildParamList() local
1964 if (retType == "::llvm::APInt" || retType == "::llvm::APFloat") in buildParamList()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp10089 QualType retType; in mergeFunctionTypes() local
10096 retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true); in mergeFunctionTypes()
10099 retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false, in mergeFunctionTypes()
10101 if (retType.isNull()) in mergeFunctionTypes()
10105 retType = retType.getUnqualifiedType(); in mergeFunctionTypes()
10114 if (getCanonicalType(retType) != LRetType) in mergeFunctionTypes()
10116 if (getCanonicalType(retType) != RRetType) in mergeFunctionTypes()
10211 return getFunctionType(retType, types, EPI); in mergeFunctionTypes()
10248 return getFunctionType(retType, proto->getParamTypes(), EPI); in mergeFunctionTypes()
10253 return getFunctionNoProtoType(retType, einfo); in mergeFunctionTypes()
/llvm-project-15.0.7/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1048 QualType retType = T; in RewriteTypeIntoString() local
1050 if (const PointerType* PT = retType->getAs<PointerType>()) in RewriteTypeIntoString()
1052 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>()) in RewriteTypeIntoString()
H A DRewriteModernObjC.cpp1215 QualType retType = T; in RewriteTypeIntoString() local
1217 if (const PointerType* PT = retType->getAs<PointerType>()) in RewriteTypeIntoString()
1219 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>()) in RewriteTypeIntoString()