Home
last modified time | relevance | path

Searched refs:getChecked (Results 1 – 25 of 33) sorted by relevance

12

/llvm-project-15.0.7/mlir/include/mlir/Dialect/Quant/
H A DQuantTypes.h202 using Base::getChecked;
213 getChecked(function_ref<InFlightDiagnostic()> emitError, unsigned flags,
261 using Base::getChecked;
273 getChecked(function_ref<InFlightDiagnostic()> emitError, unsigned flags,
319 using Base::getChecked;
332 getChecked(function_ref<InFlightDiagnostic()> emitError, unsigned flags,
388 using Base::getChecked;
398 getChecked(function_ref<InFlightDiagnostic()> emitError, Type expressedType,
/llvm-project-15.0.7/mlir/include/mlir/Dialect/LLVMIR/
H A DLLVMTypes.h82 using Base::getChecked;
90 static LLVMArrayType getChecked(function_ref<InFlightDiagnostic()> emitError,
136 using Base::getChecked;
152 getChecked(function_ref<InFlightDiagnostic()> emitError, Type result,
212 getChecked(function_ref<InFlightDiagnostic()> emitError, Type pointee,
215 getChecked(function_ref<InFlightDiagnostic()> emitError, MLIRContext *context,
401 using Base::getChecked;
407 getChecked(function_ref<InFlightDiagnostic()> emitError, Type elementType,
445 using Base::getChecked;
451 getChecked(function_ref<InFlightDiagnostic()> emitError, Type elementType,
/llvm-project-15.0.7/mlir/lib/Dialect/Quant/IR/
H A DQuantTypes.cpp225 AnyQuantizedType::getChecked(function_ref<InFlightDiagnostic()> emitError, in getChecked() function in AnyQuantizedType
229 return Base::getChecked(emitError, storageType.getContext(), flags, in getChecked()
261 UniformQuantizedType UniformQuantizedType::getChecked( in getChecked() function in UniformQuantizedType
265 return Base::getChecked(emitError, storageType.getContext(), flags, in getChecked()
313 UniformQuantizedPerAxisType UniformQuantizedPerAxisType::getChecked( in getChecked() function in UniformQuantizedPerAxisType
318 return Base::getChecked(emitError, storageType.getContext(), flags, in getChecked()
375 CalibratedQuantizedType CalibratedQuantizedType::getChecked( in getChecked() function in CalibratedQuantizedType
378 return Base::getChecked(emitError, expressedType.getContext(), expressedType, in getChecked()
H A DTypeParser.cpp159 return parser.getChecked<AnyQuantizedType>( in parseAnyType()
282 return parser.getChecked<UniformQuantizedPerAxisType>( in parseUniformType()
287 return parser.getChecked<UniformQuantizedType>( in parseUniformType()
317 return parser.getChecked<CalibratedQuantizedType>(expressedType, min, max); in parseCalibratedType()
/llvm-project-15.0.7/mlir/lib/Dialect/LLVMIR/IR/
H A DLLVMTypeSyntax.cpp195 return parser.getChecked<LLVMFunctionType>(loc, returnType, llvm::None, in parseFunctionType()
206 return parser.getChecked<LLVMFunctionType>(loc, returnType, argTypes, in parseFunctionType()
218 return parser.getChecked<LLVMFunctionType>(loc, returnType, argTypes, in parseFunctionType()
229 return parser.getChecked<LLVMPointerType>(loc, parser.getContext(), in parsePointerType()
238 return parser.getChecked<LLVMPointerType>(loc, parser.getContext(), in parsePointerType()
250 return parser.getChecked<LLVMPointerType>(loc, elementType, addressSpace); in parsePointerType()
281 return parser.getChecked<LLVMScalableVectorType>(loc, elementType, dims[1]); in parseVectorType()
287 return parser.getChecked<LLVMFixedVectorType>(loc, elementType, dims[0]); in parseVectorType()
307 return parser.getChecked<LLVMArrayType>(loc, elementType, dims[0]); in parseArrayType()
H A DLLVMTypes.cpp45 LLVMArrayType::getChecked(function_ref<InFlightDiagnostic()> emitError, in getChecked() function in LLVMArrayType
48 return Base::getChecked(emitError, elementType.getContext(), elementType, in getChecked()
119 LLVMFunctionType::getChecked(function_ref<InFlightDiagnostic()> emitError, in getChecked() function in LLVMFunctionType
123 return Base::getChecked(emitError, result.getContext(), result, arguments, in getChecked()
204 LLVMPointerType::getChecked(function_ref<InFlightDiagnostic()> emitError, in getChecked() function in LLVMPointerType
206 return Base::getChecked(emitError, pointee.getContext(), pointee, in getChecked()
211 LLVMPointerType::getChecked(function_ref<InFlightDiagnostic()> emitError, in getChecked() function in LLVMPointerType
213 return Base::getChecked(emitError, context, Type(), addressSpace); in getChecked()
409 return Base::getChecked(emitError, context, name, /*opaque=*/false); in getIdentifiedChecked()
438 return Base::getChecked(emitError, context, types, isPacked); in getLiteralChecked()
[all …]
/llvm-project-15.0.7/mlir/lib/CAPI/IR/
H A DBuiltinTypes.cpp181 return wrap(VectorType::getChecked( in mlirVectorTypeGetChecked()
211 return wrap(RankedTensorType::getChecked( in mlirRankedTensorTypeGetChecked()
226 return wrap(UnrankedTensorType::getChecked(unwrap(loc), unwrap(elementType))); in mlirUnrankedTensorTypeGetChecked()
250 return wrap(MemRefType::getChecked( in mlirMemRefTypeGetChecked()
271 return wrap(MemRefType::getChecked( in mlirMemRefTypeContiguousGetChecked()
301 return wrap(UnrankedMemRefType::getChecked(unwrap(loc), unwrap(elementType), in mlirUnrankedMemRefTypeGetChecked()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DStorageUniquerSupport.h162 static ConcreteT getChecked(const Location &loc, Args... args) { in getChecked() function
163 return ConcreteT::getChecked(getDefaultDiagnosticEmitFn(loc), args...); in getChecked()
170 static ConcreteT getChecked(function_ref<InFlightDiagnostic()> emitErrorFn, in getChecked() function
H A DExtensibleDialect.h161 static DynamicAttr getChecked(function_ref<InFlightDiagnostic()> emitError,
304 static DynamicType getChecked(function_ref<InFlightDiagnostic()> emitError,
H A DOpImplementation.h795 auto getChecked(SMLoc loc, ParamsT &&...params) { in getChecked() function
796 return T::getChecked([&] { return emitError(loc); }, in getChecked()
802 auto getChecked(ParamsT &&...params) { in getChecked() function
803 return T::getChecked([&] { return emitError(getNameLoc()); }, in getChecked()
/llvm-project-15.0.7/mlir/lib/Dialect/Quant/Utils/
H A DFakeQuantSupport.cpp126 return UniformQuantizedType::getChecked( in fakeQuantAttrsToType()
134 return UniformQuantizedType::getChecked(loc, flags, storageType, in fakeQuantAttrsToType()
181 return UniformQuantizedPerAxisType::getChecked( in fakeQuantAttrsToType()
/llvm-project-15.0.7/mlir/test/mlir-tblgen/
H A Dtypedefs.td71 // DECL: static CompoundAType getChecked(::llvm::function_ref<::mlir::InFlightDiagnostic()> emitErr…
128 static IntegerType getChecked(unsigned width, Location location);
145 // DECL-NEXT: static IntegerType getChecked(unsigned width, Location location);
H A Dattrdefs.td69 // DECL: static CompoundAAttr getChecked(::llvm::function_ref<::mlir::InFlightDiagnostic()> emitErr…
160 // DECL: ::mlir::Attribute getChecked(
/llvm-project-15.0.7/mlir/lib/Dialect/DLTI/
H A DDLTI.cpp139 DataLayoutSpecAttr::getChecked(function_ref<InFlightDiagnostic()> emitError, in getChecked() function in DataLayoutSpecAttr
142 return Base::getChecked(emitError, context, entries); in getChecked()
294 return getChecked([&] { return parser.emitError(parser.getNameLoc()); }, in parse()
/llvm-project-15.0.7/mlir/lib/IR/
H A DExtensibleDialect.cpp138 DynamicType::getChecked(function_ref<InFlightDiagnostic()> emitError, in getChecked() function in DynamicType
162 parsedType = parser.getChecked<DynamicType>(typeDef, params); in parse()
253 DynamicAttr::getChecked(function_ref<InFlightDiagnostic()> emitError, in getChecked() function in DynamicAttr
275 parsedAttr = parser.getChecked<DynamicAttr>(attrDef, params); in parse()
H A DBuiltinTypes.cpp564 MemRefType MemRefType::getChecked( in getChecked() function in MemRefType
576 return Base::getChecked(emitErrorFn, elementType.getContext(), shape, in getChecked()
599 MemRefType::getChecked(function_ref<InFlightDiagnostic()> emitErrorFn, in getChecked() function in MemRefType
614 return Base::getChecked(emitErrorFn, elementType.getContext(), shape, in getChecked()
638 MemRefType::getChecked(function_ref<InFlightDiagnostic()> emitErrorFn, in getChecked() function in MemRefType
654 return Base::getChecked(emitErrorFn, elementType.getContext(), shape, in getChecked()
/llvm-project-15.0.7/mlir/lib/AsmParser/
H A DParser.h173 T getChecked(SMLoc loc, ParamsT &&...params) { in getChecked() function
174 return T::getChecked([&] { return emitError(loc); }, in getChecked()
H A DDialectSymbolParser.cpp247 return OpaqueAttr::getChecked( in parseExtendedAttr()
287 return OpaqueType::getChecked([&] { return emitError(loc); }, in parseExtendedType()
H A DTypeParser.cpp272 return getChecked<UnrankedMemRefType>(loc, elementType, memorySpace); in parseMemRefType()
274 return getChecked<MemRefType>(loc, dimensions, elementType, layout, in parseMemRefType()
H A DAttributeParser.cpp958 return getChecked<OpaqueElementsAttr>(loc, builder.getStringAttr(name), type, in parseOpaqueElementsAttr()
1009 return getChecked<SparseElementsAttr>( in parseSparseElementsAttr()
1062 return getChecked<SparseElementsAttr>(loc, type, indices, values); in parseSparseElementsAttr()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/DLTI/
H A DDLTI.h85 getChecked(function_ref<InFlightDiagnostic()> emitError, MLIRContext *context,
/llvm-project-15.0.7/mlir/include/mlir/Dialect/GPU/IR/
H A DGPUDialect.h134 static MMAMatrixType getChecked(function_ref<InFlightDiagnostic()> emitError,
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVTypes.h247 getChecked(function_ref<InFlightDiagnostic()> emitError, Type imageType);
431 static MatrixType getChecked(function_ref<InFlightDiagnostic()> emitError,
/llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/IR/
H A DSPIRVTypes.cpp737 SampledImageType::getChecked(function_ref<InFlightDiagnostic()> emitError, in getChecked() function in SampledImageType
739 return Base::getChecked(emitError, imageType.getContext(), imageType); in getChecked()
1103 MatrixType MatrixType::getChecked(function_ref<InFlightDiagnostic()> emitError, in getChecked() function in MatrixType
1105 return Base::getChecked(emitError, columnType.getContext(), columnType, in getChecked()
/llvm-project-15.0.7/mlir/test/lib/Dialect/Test/
H A DTestAttributes.cpp93 return parser.getChecked<TestI64ElementsAttr>( in parse()

12