/llvm-project/mlir/include/mlir/Tools/PDLL/Parser/ |
H A D | CodeComplete.h | 48 virtual void codeCompleteOperationAttributeName(StringRef opName) {} in codeCompleteOperationAttributeName() 80 codeCompleteOperationOperandsSignature(std::optional<StringRef> opName, in codeCompleteOperationOperandsSignature() 85 codeCompleteOperationResultsSignature(std::optional<StringRef> opName, in codeCompleteOperationResultsSignature()
|
/llvm-project/mlir/lib/Dialect/Transform/IR/ |
H A D | TransformDialect.cpp | 28 RegisteredOperationName opName = in checkImplementsTransformOpInterface() local 119 reportDuplicateOpRegistration(StringRef opName) reportDuplicateOpRegistration() argument [all...] |
H A D | TransformTypes.cpp | 82 OperationName opName(getOperationName(), loc.getContext()); in checkPayload() local
|
/llvm-project/mlir/include/mlir/Pass/ |
H A D | Pass.h | 310 std::optional<StringRef> opName; variable 372 bool canScheduleOn(RegisteredOperationName opName) const final { in canScheduleOn() 413 bool canScheduleOn(RegisteredOperationName opName) const override { in canScheduleOn() 438 bool canScheduleOn(RegisteredOperationName opName) const final { in canScheduleOn()
|
/llvm-project/mlir/lib/CAPI/Interfaces/ |
H A D | Interfaces.cpp | 27 getRegisteredOperationName(MlirContext context, MlirStringRef opName) { in getRegisteredOperationName() 93 MlirStringRef opName, MlirContext context, MlirLocation location, in mlirInferTypeOpInterfaceInferReturnTypes() 128 MlirStringRef opName, MlirContext context, MlirLocation location, in mlirInferShapedTypeOpInterfaceInferReturnTypes()
|
/llvm-project/mlir/test/lib/Reducer/ |
H A D | MLIRTestReducer.cpp | 38 StringRef opName = op->getName().getStringRef(); in runOnOperation() local
|
/llvm-project/mlir/tools/tblgen-to-irdl/ |
H A D | OpDefinitionsGen.cpp | 90 StringRef opName = tblgenOp.getDef().getValueAsString("opName"); getOperatorName() local 98 StringRef opName = getOperatorName(tblgenOp); createIRDLOperation() local
|
/llvm-project/mlir/tools/mlir-tblgen/ |
H A D | RewriterGen.cpp | 409 void PatternEmitter::emitStaticMatchCall(DagNode tree, StringRef opName) { in emitStaticMatchCall() argument 441 emitStaticVerifierCall(StringRef funcName,StringRef opName,StringRef arg,StringRef failureStr) emitStaticVerifierCall() argument 450 emitNativeCodeMatch(DagNode tree,StringRef opName,int depth) emitNativeCodeMatch() argument 561 emitOpMatch(DagNode tree,StringRef opName,int depth) emitOpMatch() argument 677 emitOperandMatch(DagNode tree,StringRef opName,StringRef operandName,int operandIndex,DagLeaf operandMatcher,StringRef argName,int argIndex,std::optional<int> variadicSubIndex) emitOperandMatch() argument 728 emitEitherOperandMatch(DagNode tree,DagNode eitherArgTree,StringRef opName,int argIndex,int & operandIndex,int depth) emitEitherOperandMatch() argument 808 emitVariadicOperandMatch(DagNode tree,DagNode variadicArgTree,StringRef opName,int argIndex,int & operandIndex,int depth) emitVariadicOperandMatch() argument 867 emitAttributeMatch(DagNode tree,StringRef opName,int argIndex,int depth) emitAttributeMatch() argument 940 emitMatchCheck(StringRef opName,const FmtObjectBase & matchFmt,const llvm::formatv_object_base & failureFmt) emitMatchCheck() argument 945 emitMatchCheck(StringRef opName,const std::string & matchStr,const std::string & failureStr) emitMatchCheck() argument 955 emitMatchLogic(DagNode tree,StringRef opName) emitMatchLogic() argument [all...] |
H A D | OpGenHelpers.cpp | 41 auto opName = def.getValueAsString("opName"); in getOperationName() local
|
/llvm-project/mlir/include/mlir/IR/ |
H A D | Dialect.h | 181 OperationName opName) { in getRegisteredInterfaceForOp() argument 186 getRegisteredInterfaceForOp(OperationName opName) { in getRegisteredInterfaceForOp() argument
|
H A D | ExtensibleDialect.h | 477 verifyInherentAttrs(OperationName opName, NamedAttrList &attributes, in verifyInherentAttrs() 482 void initProperties(OperationName opName, OpaqueProperties storage, in initProperties() 485 void populateDefaultProperties(OperationName opName, in populateDefaultProperties() 489 setPropertiesFromAttr(OperationName opName, OpaqueProperties properties, in setPropertiesFromAttr()
|
/llvm-project/mlir/lib/Dialect/PDL/IR/ |
H A D | PDL.cpp | 216 std::optional<RegisteredOperationName> opName = verifyResultTypesAreInferrable() local 301 OperationName opName(*rawOpName, getContext()); hasTypeInference() local 309 OperationName opName(*rawOpName, getContext()); mightHaveTypeInference() local
|
/llvm-project/mlir/test/lib/Pass/ |
H A D | TestDynamicPipeline.cpp | 57 auto opName = symbolOp.getName(); in runOnOperation() local
|
/llvm-project/mlir/lib/IR/ |
H A D | Verifier.cpp | 176 OperationName opName = op.getName(); verifyOnEntrance() local 231 OperationName opName = op.getName(); verifyOnExit() local
|
H A D | MLIRContext.cpp | 868 verifyInherentAttrs(OperationName opName,NamedAttrList & attributes,function_ref<InFlightDiagnostic ()> emitError) verifyInherentAttrs() argument 876 initProperties(OperationName opName,OpaqueProperties storage,OpaqueProperties init) initProperties() argument 884 populateDefaultProperties(OperationName opName,OpaqueProperties properties) populateDefaultProperties() argument 886 setPropertiesFromAttr(OperationName opName,OpaqueProperties properties,Attribute attr,function_ref<InFlightDiagnostic ()> emitError) setPropertiesFromAttr() argument
|
/llvm-project/mlir/lib/CAPI/IR/ |
H A D | Pass.cpp | 115 ExternalPass(TypeID passID,StringRef name,StringRef argument,StringRef description,std::optional<StringRef> opName,ArrayRef<MlirDialectHandle> dependentDialects,MlirExternalPassCallbacks callbacks,void * userData) ExternalPass() argument 175 mlirCreateExternalPass(MlirTypeID passID,MlirStringRef name,MlirStringRef argument,MlirStringRef description,MlirStringRef opName,intptr_t nDependentDialects,MlirDialectHandle * dependentDialects,MlirExternalPassCallbacks callbacks,void * userData) mlirCreateExternalPass() argument
|
/llvm-project/mlir/lib/Transforms/ |
H A D | OpStats.cpp | 67 __anon597908880302(StringRef opName) printSummary() argument
|
/llvm-project/mlir/include/mlir/Dialect/Transform/IR/ |
H A D | TransformDialect.h | 255 std::optional<RegisteredOperationName> opName = in addOperationIfNotRegistered() local
|
/llvm-project/mlir/lib/Transforms/Utils/ |
H A D | CommutativityUtils.cpp | 43 StringRef opName; member
|
/llvm-project/mlir/include/mlir/Dialect/Bufferization/IR/ |
H A D | BufferizableOpInterface.h | 179 allowOperation(StringRef opName) allowOperation() argument 189 denyOperation(StringRef opName) denyOperation() argument
|
/llvm-project/flang/lib/Optimizer/HLFIR/Transforms/ |
H A D | LowerHLFIRIntrinsics.cpp | 212 mlir::PatternRewriter &rewriter, std::string opName, in buildMinMaxLocArgs() argument 240 std::string opName; in matchAndRewrite() local [all...] |
/llvm-project/mlir/test/lib/Dialect/Test/ |
H A D | TestDialect.cpp | 353 OperationName opName) { in getRegisteredInterfaceForOp() 407 StringRef opName = op->getName().getStringRef(); in getOperationPrinter() local
|
/llvm-project/mlir/lib/Tools/PDLL/Parser/ |
H A D | Parser.cpp | 133 const ods::Operation *lookupODSOperation(std::optional<StringRef> opName) { in lookupODSOperation() argument 1703 FailureOr<ast::OpNameDecl *> opName = parseConstraint() local 2046 std::optional<StringRef> opName = (*opNameDecl)->getName(); parseOperationExpr() local 2894 checkOperationResultTypeInferrence(SMRange loc,StringRef opName,const ods::Operation * odsOp) checkOperationResultTypeInferrence() argument 3135 codeCompleteAttributeName(std::optional<StringRef> opName) codeCompleteAttributeName() argument 3179 codeCompleteOperationOperandsSignature(std::optional<StringRef> opName,unsigned currentNumOperands) codeCompleteOperationOperandsSignature() argument 3185 codeCompleteOperationResultsSignature(std::optional<StringRef> opName,unsigned currentNumResults) codeCompleteOperationResultsSignature() argument [all...] |
/llvm-project/mlir/test/lib/Dialect/SPIRV/ |
H A D | TestAvailability.cpp | 45 auto opName = op->getName(); in runOnOperation() local
|
/llvm-project/mlir/lib/Tools/mlir-pdll-lsp-server/ |
H A D | PDLLServer.cpp | 208 auto insertODSOpRef = [&](StringRef opName, SMRange refLoc) { in initialize() argument 745 void codeCompleteOperationAttributeName(StringRef opName) final { in codeCompleteOperationAttributeName() argument 1042 codeCompleteOperationOperandsSignature(std::optional<StringRef> opName, in codeCompleteOperationOperandsSignature() argument 1051 void codeCompleteOperationResultsSignature(std::optional<StringRef> opName, in codeCompleteOperationResultsSignature() argument 1061 codeCompleteOperationOperandOrResultSignature(std::optional<StringRef> opName,const ods::Operation * odsOp,ArrayRef<ods::OperandOrResult> values,unsigned currentValue,StringRef label,StringRef dataType) codeCompleteOperationOperandOrResultSignature() argument [all...] |