1 //===- Operator.cpp - Operator class --------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Operator wrapper to simplify using TableGen Record defining a MLIR Op.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "mlir/TableGen/Operator.h"
14 #include "mlir/TableGen/Predicate.h"
15 #include "mlir/TableGen/Trait.h"
16 #include "mlir/TableGen/Type.h"
17 #include "llvm/ADT/EquivalenceClasses.h"
18 #include "llvm/ADT/STLExtras.h"
19 #include "llvm/ADT/Sequence.h"
20 #include "llvm/ADT/SmallPtrSet.h"
21 #include "llvm/ADT/StringExtras.h"
22 #include "llvm/ADT/TypeSwitch.h"
23 #include "llvm/Support/Debug.h"
24 #include "llvm/Support/ErrorHandling.h"
25 #include "llvm/Support/FormatVariadic.h"
26 #include "llvm/TableGen/Error.h"
27 #include "llvm/TableGen/Record.h"
28 
29 #define DEBUG_TYPE "mlir-tblgen-operator"
30 
31 using namespace mlir;
32 using namespace mlir::tblgen;
33 
34 using llvm::DagInit;
35 using llvm::DefInit;
36 using llvm::Record;
37 
38 Operator::Operator(const llvm::Record &def)
39     : dialect(def.getValueAsDef("opDialect")), def(def) {
40   // The first `_` in the op's TableGen def name is treated as separating the
41   // dialect prefix and the op class name. The dialect prefix will be ignored if
42   // not empty. Otherwise, if def name starts with a `_`, the `_` is considered
43   // as part of the class name.
44   StringRef prefix;
45   std::tie(prefix, cppClassName) = def.getName().split('_');
46   if (prefix.empty()) {
47     // Class name with a leading underscore and without dialect prefix
48     cppClassName = def.getName();
49   } else if (cppClassName.empty()) {
50     // Class name without dialect prefix
51     cppClassName = prefix;
52   }
53 
54   cppNamespace = def.getValueAsString("cppNamespace");
55 
56   populateOpStructure();
57   assertInvariants();
58 }
59 
60 std::string Operator::getOperationName() const {
61   auto prefix = dialect.getName();
62   auto opName = def.getValueAsString("opName");
63   if (prefix.empty())
64     return std::string(opName);
65   return std::string(llvm::formatv("{0}.{1}", prefix, opName));
66 }
67 
68 std::string Operator::getAdaptorName() const {
69   return std::string(llvm::formatv("{0}Adaptor", getCppClassName()));
70 }
71 
72 void Operator::assertInvariants() const {
73   // Check that the name of arguments/results/regions/successors don't overlap.
74   DenseMap<StringRef, StringRef> existingNames;
75   auto checkName = [&](StringRef name, StringRef entity) {
76     if (name.empty())
77       return;
78     auto insertion = existingNames.insert({name, entity});
79     if (insertion.second)
80       return;
81     if (entity == insertion.first->second)
82       PrintFatalError(getLoc(), "op has a conflict with two " + entity +
83                                     " having the same name '" + name + "'");
84     PrintFatalError(getLoc(), "op has a conflict with " +
85                                   insertion.first->second + " and " + entity +
86                                   " both having an entry with the name '" +
87                                   name + "'");
88   };
89   // Check operands amongst themselves.
90   for (int i : llvm::seq<int>(0, getNumOperands()))
91     checkName(getOperand(i).name, "operands");
92 
93   // Check results amongst themselves and against operands.
94   for (int i : llvm::seq<int>(0, getNumResults()))
95     checkName(getResult(i).name, "results");
96 
97   // Check regions amongst themselves and against operands and results.
98   for (int i : llvm::seq<int>(0, getNumRegions()))
99     checkName(getRegion(i).name, "regions");
100 
101   // Check successors amongst themselves and against operands, results, and
102   // regions.
103   for (int i : llvm::seq<int>(0, getNumSuccessors()))
104     checkName(getSuccessor(i).name, "successors");
105 }
106 
107 StringRef Operator::getDialectName() const { return dialect.getName(); }
108 
109 StringRef Operator::getCppClassName() const { return cppClassName; }
110 
111 std::string Operator::getQualCppClassName() const {
112   if (cppNamespace.empty())
113     return std::string(cppClassName);
114   return std::string(llvm::formatv("{0}::{1}", cppNamespace, cppClassName));
115 }
116 
117 StringRef Operator::getCppNamespace() const { return cppNamespace; }
118 
119 int Operator::getNumResults() const {
120   DagInit *results = def.getValueAsDag("results");
121   return results->getNumArgs();
122 }
123 
124 StringRef Operator::getExtraClassDeclaration() const {
125   constexpr auto attr = "extraClassDeclaration";
126   if (def.isValueUnset(attr))
127     return {};
128   return def.getValueAsString(attr);
129 }
130 
131 StringRef Operator::getExtraClassDefinition() const {
132   constexpr auto attr = "extraClassDefinition";
133   if (def.isValueUnset(attr))
134     return {};
135   return def.getValueAsString(attr);
136 }
137 
138 const llvm::Record &Operator::getDef() const { return def; }
139 
140 bool Operator::skipDefaultBuilders() const {
141   return def.getValueAsBit("skipDefaultBuilders");
142 }
143 
144 auto Operator::result_begin() const -> const_value_iterator {
145   return results.begin();
146 }
147 
148 auto Operator::result_end() const -> const_value_iterator {
149   return results.end();
150 }
151 
152 auto Operator::getResults() const -> const_value_range {
153   return {result_begin(), result_end()};
154 }
155 
156 TypeConstraint Operator::getResultTypeConstraint(int index) const {
157   DagInit *results = def.getValueAsDag("results");
158   return TypeConstraint(cast<DefInit>(results->getArg(index)));
159 }
160 
161 StringRef Operator::getResultName(int index) const {
162   DagInit *results = def.getValueAsDag("results");
163   return results->getArgNameStr(index);
164 }
165 
166 auto Operator::getResultDecorators(int index) const -> var_decorator_range {
167   Record *result =
168       cast<DefInit>(def.getValueAsDag("results")->getArg(index))->getDef();
169   if (!result->isSubClassOf("OpVariable"))
170     return var_decorator_range(nullptr, nullptr);
171   return *result->getValueAsListInit("decorators");
172 }
173 
174 unsigned Operator::getNumVariableLengthResults() const {
175   return llvm::count_if(results, [](const NamedTypeConstraint &c) {
176     return c.constraint.isVariableLength();
177   });
178 }
179 
180 unsigned Operator::getNumVariableLengthOperands() const {
181   return llvm::count_if(operands, [](const NamedTypeConstraint &c) {
182     return c.constraint.isVariableLength();
183   });
184 }
185 
186 bool Operator::hasSingleVariadicArg() const {
187   return getNumArgs() == 1 && getArg(0).is<NamedTypeConstraint *>() &&
188          getOperand(0).isVariadic();
189 }
190 
191 Operator::arg_iterator Operator::arg_begin() const { return arguments.begin(); }
192 
193 Operator::arg_iterator Operator::arg_end() const { return arguments.end(); }
194 
195 Operator::arg_range Operator::getArgs() const {
196   return {arg_begin(), arg_end()};
197 }
198 
199 StringRef Operator::getArgName(int index) const {
200   DagInit *argumentValues = def.getValueAsDag("arguments");
201   return argumentValues->getArgNameStr(index);
202 }
203 
204 auto Operator::getArgDecorators(int index) const -> var_decorator_range {
205   Record *arg =
206       cast<DefInit>(def.getValueAsDag("arguments")->getArg(index))->getDef();
207   if (!arg->isSubClassOf("OpVariable"))
208     return var_decorator_range(nullptr, nullptr);
209   return *arg->getValueAsListInit("decorators");
210 }
211 
212 const Trait *Operator::getTrait(StringRef trait) const {
213   for (const auto &t : traits) {
214     if (const auto *traitDef = dyn_cast<NativeTrait>(&t)) {
215       if (traitDef->getFullyQualifiedTraitName() == trait)
216         return traitDef;
217     } else if (const auto *traitDef = dyn_cast<InternalTrait>(&t)) {
218       if (traitDef->getFullyQualifiedTraitName() == trait)
219         return traitDef;
220     } else if (const auto *traitDef = dyn_cast<InterfaceTrait>(&t)) {
221       if (traitDef->getFullyQualifiedTraitName() == trait)
222         return traitDef;
223     }
224   }
225   return nullptr;
226 }
227 
228 auto Operator::region_begin() const -> const_region_iterator {
229   return regions.begin();
230 }
231 auto Operator::region_end() const -> const_region_iterator {
232   return regions.end();
233 }
234 auto Operator::getRegions() const
235     -> llvm::iterator_range<const_region_iterator> {
236   return {region_begin(), region_end()};
237 }
238 
239 unsigned Operator::getNumRegions() const { return regions.size(); }
240 
241 const NamedRegion &Operator::getRegion(unsigned index) const {
242   return regions[index];
243 }
244 
245 unsigned Operator::getNumVariadicRegions() const {
246   return llvm::count_if(regions,
247                         [](const NamedRegion &c) { return c.isVariadic(); });
248 }
249 
250 auto Operator::successor_begin() const -> const_successor_iterator {
251   return successors.begin();
252 }
253 auto Operator::successor_end() const -> const_successor_iterator {
254   return successors.end();
255 }
256 auto Operator::getSuccessors() const
257     -> llvm::iterator_range<const_successor_iterator> {
258   return {successor_begin(), successor_end()};
259 }
260 
261 unsigned Operator::getNumSuccessors() const { return successors.size(); }
262 
263 const NamedSuccessor &Operator::getSuccessor(unsigned index) const {
264   return successors[index];
265 }
266 
267 unsigned Operator::getNumVariadicSuccessors() const {
268   return llvm::count_if(successors,
269                         [](const NamedSuccessor &c) { return c.isVariadic(); });
270 }
271 
272 auto Operator::trait_begin() const -> const_trait_iterator {
273   return traits.begin();
274 }
275 auto Operator::trait_end() const -> const_trait_iterator {
276   return traits.end();
277 }
278 auto Operator::getTraits() const -> llvm::iterator_range<const_trait_iterator> {
279   return {trait_begin(), trait_end()};
280 }
281 
282 auto Operator::attribute_begin() const -> attribute_iterator {
283   return attributes.begin();
284 }
285 auto Operator::attribute_end() const -> attribute_iterator {
286   return attributes.end();
287 }
288 auto Operator::getAttributes() const
289     -> llvm::iterator_range<attribute_iterator> {
290   return {attribute_begin(), attribute_end()};
291 }
292 
293 auto Operator::operand_begin() const -> const_value_iterator {
294   return operands.begin();
295 }
296 auto Operator::operand_end() const -> const_value_iterator {
297   return operands.end();
298 }
299 auto Operator::getOperands() const -> const_value_range {
300   return {operand_begin(), operand_end()};
301 }
302 
303 auto Operator::getArg(int index) const -> Argument { return arguments[index]; }
304 
305 // Mapping from result index to combined argument and result index. Arguments
306 // are indexed to match getArg index, while the result indexes are mapped to
307 // avoid overlap.
308 static int resultIndex(int i) { return -1 - i; }
309 
310 bool Operator::isVariadic() const {
311   return any_of(llvm::concat<const NamedTypeConstraint>(operands, results),
312                 [](const NamedTypeConstraint &op) { return op.isVariadic(); });
313 }
314 
315 void Operator::populateTypeInferenceInfo(
316     const llvm::StringMap<int> &argumentsAndResultsIndex) {
317   // If the type inference op interface is not registered, then do not attempt
318   // to determine if the result types an be inferred.
319   auto &recordKeeper = def.getRecords();
320   auto *inferTrait = recordKeeper.getDef(inferTypeOpInterface);
321   allResultsHaveKnownTypes = false;
322   if (!inferTrait)
323     return;
324 
325   // If there are no results, the skip this else the build method generated
326   // overlaps with another autogenerated builder.
327   if (getNumResults() == 0)
328     return;
329 
330   // Skip ops with variadic or optional results.
331   if (getNumVariableLengthResults() > 0)
332     return;
333 
334   // Skip cases currently being custom generated.
335   // TODO: Remove special cases.
336   if (getTrait("::mlir::OpTrait::SameOperandsAndResultType"))
337     return;
338 
339   // We create equivalence classes of argument/result types where arguments
340   // and results are mapped into the same index space and indices corresponding
341   // to the same type are in the same equivalence class.
342   llvm::EquivalenceClasses<int> ecs;
343   resultTypeMapping.resize(getNumResults());
344   // Captures the argument whose type matches a given result type. Preference
345   // towards capturing operands first before attributes.
346   auto captureMapping = [&](int i) {
347     bool found = false;
348     ecs.insert(resultIndex(i));
349     auto mi = ecs.findLeader(resultIndex(i));
350     for (auto me = ecs.member_end(); mi != me; ++mi) {
351       if (*mi < 0) {
352         auto tc = getResultTypeConstraint(i);
353         if (tc.getBuilderCall().hasValue()) {
354           resultTypeMapping[i].emplace_back(tc);
355           found = true;
356         }
357         continue;
358       }
359 
360       resultTypeMapping[i].emplace_back(*mi);
361       found = true;
362     }
363     return found;
364   };
365 
366   for (const Trait &trait : traits) {
367     const llvm::Record &def = trait.getDef();
368     // If the infer type op interface was manually added, then treat it as
369     // intention that the op needs special handling.
370     // TODO: Reconsider whether to always generate, this is more conservative
371     // and keeps existing behavior so starting that way for now.
372     if (def.isSubClassOf(
373             llvm::formatv("{0}::Trait", inferTypeOpInterface).str()))
374       return;
375     if (const auto *traitDef = dyn_cast<InterfaceTrait>(&trait))
376       if (&traitDef->getDef() == inferTrait)
377         return;
378 
379     if (!def.isSubClassOf("AllTypesMatch"))
380       continue;
381 
382     auto values = def.getValueAsListOfStrings("values");
383     auto root = argumentsAndResultsIndex.lookup(values.front());
384     for (StringRef str : values)
385       ecs.unionSets(argumentsAndResultsIndex.lookup(str), root);
386   }
387 
388   // Verifies that all output types have a corresponding known input type
389   // and chooses matching operand or attribute (in that order) that
390   // matches it.
391   allResultsHaveKnownTypes =
392       all_of(llvm::seq<int>(0, getNumResults()), captureMapping);
393 
394   // If the types could be computed, then add type inference trait.
395   if (allResultsHaveKnownTypes)
396     traits.push_back(Trait::create(inferTrait->getDefInit()));
397 }
398 
399 void Operator::populateOpStructure() {
400   auto &recordKeeper = def.getRecords();
401   auto *typeConstraintClass = recordKeeper.getClass("TypeConstraint");
402   auto *attrClass = recordKeeper.getClass("Attr");
403   auto *derivedAttrClass = recordKeeper.getClass("DerivedAttr");
404   auto *opVarClass = recordKeeper.getClass("OpVariable");
405   numNativeAttributes = 0;
406 
407   DagInit *argumentValues = def.getValueAsDag("arguments");
408   unsigned numArgs = argumentValues->getNumArgs();
409 
410   // Mapping from name of to argument or result index. Arguments are indexed
411   // to match getArg index, while the results are negatively indexed.
412   llvm::StringMap<int> argumentsAndResultsIndex;
413 
414   // Handle operands and native attributes.
415   for (unsigned i = 0; i != numArgs; ++i) {
416     auto *arg = argumentValues->getArg(i);
417     auto givenName = argumentValues->getArgNameStr(i);
418     auto *argDefInit = dyn_cast<DefInit>(arg);
419     if (!argDefInit)
420       PrintFatalError(def.getLoc(),
421                       Twine("undefined type for argument #") + Twine(i));
422     Record *argDef = argDefInit->getDef();
423     if (argDef->isSubClassOf(opVarClass))
424       argDef = argDef->getValueAsDef("constraint");
425 
426     if (argDef->isSubClassOf(typeConstraintClass)) {
427       operands.push_back(
428           NamedTypeConstraint{givenName, TypeConstraint(argDef)});
429     } else if (argDef->isSubClassOf(attrClass)) {
430       if (givenName.empty())
431         PrintFatalError(argDef->getLoc(), "attributes must be named");
432       if (argDef->isSubClassOf(derivedAttrClass))
433         PrintFatalError(argDef->getLoc(),
434                         "derived attributes not allowed in argument list");
435       attributes.push_back({givenName, Attribute(argDef)});
436       ++numNativeAttributes;
437     } else {
438       PrintFatalError(def.getLoc(), "unexpected def type; only defs deriving "
439                                     "from TypeConstraint or Attr are allowed");
440     }
441     if (!givenName.empty())
442       argumentsAndResultsIndex[givenName] = i;
443   }
444 
445   // Handle derived attributes.
446   for (const auto &val : def.getValues()) {
447     if (auto *record = dyn_cast<llvm::RecordRecTy>(val.getType())) {
448       if (!record->isSubClassOf(attrClass))
449         continue;
450       if (!record->isSubClassOf(derivedAttrClass))
451         PrintFatalError(def.getLoc(),
452                         "unexpected Attr where only DerivedAttr is allowed");
453 
454       if (record->getClasses().size() != 1) {
455         PrintFatalError(
456             def.getLoc(),
457             "unsupported attribute modelling, only single class expected");
458       }
459       attributes.push_back(
460           {cast<llvm::StringInit>(val.getNameInit())->getValue(),
461            Attribute(cast<DefInit>(val.getValue()))});
462     }
463   }
464 
465   // Populate `arguments`. This must happen after we've finalized `operands` and
466   // `attributes` because we will put their elements' pointers in `arguments`.
467   // SmallVector may perform re-allocation under the hood when adding new
468   // elements.
469   int operandIndex = 0, attrIndex = 0;
470   for (unsigned i = 0; i != numArgs; ++i) {
471     Record *argDef = dyn_cast<DefInit>(argumentValues->getArg(i))->getDef();
472     if (argDef->isSubClassOf(opVarClass))
473       argDef = argDef->getValueAsDef("constraint");
474 
475     if (argDef->isSubClassOf(typeConstraintClass)) {
476       attrOrOperandMapping.push_back(
477           {OperandOrAttribute::Kind::Operand, operandIndex});
478       arguments.emplace_back(&operands[operandIndex++]);
479     } else {
480       assert(argDef->isSubClassOf(attrClass));
481       attrOrOperandMapping.push_back(
482           {OperandOrAttribute::Kind::Attribute, attrIndex});
483       arguments.emplace_back(&attributes[attrIndex++]);
484     }
485   }
486 
487   auto *resultsDag = def.getValueAsDag("results");
488   auto *outsOp = dyn_cast<DefInit>(resultsDag->getOperator());
489   if (!outsOp || outsOp->getDef()->getName() != "outs") {
490     PrintFatalError(def.getLoc(), "'results' must have 'outs' directive");
491   }
492 
493   // Handle results.
494   for (unsigned i = 0, e = resultsDag->getNumArgs(); i < e; ++i) {
495     auto name = resultsDag->getArgNameStr(i);
496     auto *resultInit = dyn_cast<DefInit>(resultsDag->getArg(i));
497     if (!resultInit) {
498       PrintFatalError(def.getLoc(),
499                       Twine("undefined type for result #") + Twine(i));
500     }
501     auto *resultDef = resultInit->getDef();
502     if (resultDef->isSubClassOf(opVarClass))
503       resultDef = resultDef->getValueAsDef("constraint");
504     results.push_back({name, TypeConstraint(resultDef)});
505     if (!name.empty())
506       argumentsAndResultsIndex[name] = resultIndex(i);
507 
508     // We currently only support VariadicOfVariadic operands.
509     if (results.back().constraint.isVariadicOfVariadic()) {
510       PrintFatalError(
511           def.getLoc(),
512           "'VariadicOfVariadic' results are currently not supported");
513     }
514   }
515 
516   // Handle successors
517   auto *successorsDag = def.getValueAsDag("successors");
518   auto *successorsOp = dyn_cast<DefInit>(successorsDag->getOperator());
519   if (!successorsOp || successorsOp->getDef()->getName() != "successor") {
520     PrintFatalError(def.getLoc(),
521                     "'successors' must have 'successor' directive");
522   }
523 
524   for (unsigned i = 0, e = successorsDag->getNumArgs(); i < e; ++i) {
525     auto name = successorsDag->getArgNameStr(i);
526     auto *successorInit = dyn_cast<DefInit>(successorsDag->getArg(i));
527     if (!successorInit) {
528       PrintFatalError(def.getLoc(),
529                       Twine("undefined kind for successor #") + Twine(i));
530     }
531     Successor successor(successorInit->getDef());
532 
533     // Only support variadic successors if it is the last one for now.
534     if (i != e - 1 && successor.isVariadic())
535       PrintFatalError(def.getLoc(), "only the last successor can be variadic");
536     successors.push_back({name, successor});
537   }
538 
539   // Create list of traits, skipping over duplicates: appending to lists in
540   // tablegen is easy, making them unique less so, so dedupe here.
541   if (auto *traitList = def.getValueAsListInit("traits")) {
542     // This is uniquing based on pointers of the trait.
543     SmallPtrSet<const llvm::Init *, 32> traitSet;
544     traits.reserve(traitSet.size());
545 
546     // The declaration order of traits imply the verification order of traits.
547     // Some traits may require other traits to be verified first then they can
548     // do further verification based on those verified facts. If you see this
549     // error, fix the traits declaration order by checking the `dependentTraits`
550     // field.
551     auto verifyTraitValidity = [&](Record *trait) {
552       auto *dependentTraits = trait->getValueAsListInit("dependentTraits");
553       for (auto *traitInit : *dependentTraits)
554         if (traitSet.find(traitInit) == traitSet.end())
555           PrintFatalError(
556               def.getLoc(),
557               trait->getValueAsString("trait") + " requires " +
558                   cast<DefInit>(traitInit)->getDef()->getValueAsString(
559                       "trait") +
560                   " to precede it in traits list");
561     };
562 
563     std::function<void(llvm::ListInit *)> insert;
564     insert = [&](llvm::ListInit *traitList) {
565       for (auto *traitInit : *traitList) {
566         auto *def = cast<DefInit>(traitInit)->getDef();
567         if (def->isSubClassOf("TraitList")) {
568           insert(def->getValueAsListInit("traits"));
569           continue;
570         }
571 
572         // Verify if the trait has all the dependent traits declared before
573         // itself.
574         verifyTraitValidity(def);
575 
576         // Keep traits in the same order while skipping over duplicates.
577         if (traitSet.insert(traitInit).second)
578           traits.push_back(Trait::create(traitInit));
579       }
580     };
581     insert(traitList);
582   }
583 
584   populateTypeInferenceInfo(argumentsAndResultsIndex);
585 
586   // Handle regions
587   auto *regionsDag = def.getValueAsDag("regions");
588   auto *regionsOp = dyn_cast<DefInit>(regionsDag->getOperator());
589   if (!regionsOp || regionsOp->getDef()->getName() != "region") {
590     PrintFatalError(def.getLoc(), "'regions' must have 'region' directive");
591   }
592 
593   for (unsigned i = 0, e = regionsDag->getNumArgs(); i < e; ++i) {
594     auto name = regionsDag->getArgNameStr(i);
595     auto *regionInit = dyn_cast<DefInit>(regionsDag->getArg(i));
596     if (!regionInit) {
597       PrintFatalError(def.getLoc(),
598                       Twine("undefined kind for region #") + Twine(i));
599     }
600     Region region(regionInit->getDef());
601     if (region.isVariadic()) {
602       // Only support variadic regions if it is the last one for now.
603       if (i != e - 1)
604         PrintFatalError(def.getLoc(), "only the last region can be variadic");
605       if (name.empty())
606         PrintFatalError(def.getLoc(), "variadic regions must be named");
607     }
608 
609     regions.push_back({name, region});
610   }
611 
612   // Populate the builders.
613   auto *builderList =
614       dyn_cast_or_null<llvm::ListInit>(def.getValueInit("builders"));
615   if (builderList && !builderList->empty()) {
616     for (llvm::Init *init : builderList->getValues())
617       builders.emplace_back(cast<llvm::DefInit>(init)->getDef(), def.getLoc());
618   } else if (skipDefaultBuilders()) {
619     PrintFatalError(
620         def.getLoc(),
621         "default builders are skipped and no custom builders provided");
622   }
623 
624   LLVM_DEBUG(print(llvm::dbgs()));
625 }
626 
627 auto Operator::getSameTypeAsResult(int index) const -> ArrayRef<ArgOrType> {
628   assert(allResultTypesKnown());
629   return resultTypeMapping[index];
630 }
631 
632 ArrayRef<SMLoc> Operator::getLoc() const { return def.getLoc(); }
633 
634 bool Operator::hasDescription() const {
635   return def.getValue("description") != nullptr;
636 }
637 
638 StringRef Operator::getDescription() const {
639   return def.getValueAsString("description");
640 }
641 
642 bool Operator::hasSummary() const { return def.getValue("summary") != nullptr; }
643 
644 StringRef Operator::getSummary() const {
645   return def.getValueAsString("summary");
646 }
647 
648 bool Operator::hasAssemblyFormat() const {
649   auto *valueInit = def.getValueInit("assemblyFormat");
650   return isa<llvm::StringInit>(valueInit);
651 }
652 
653 StringRef Operator::getAssemblyFormat() const {
654   return TypeSwitch<llvm::Init *, StringRef>(def.getValueInit("assemblyFormat"))
655       .Case<llvm::StringInit>([&](auto *init) { return init->getValue(); });
656 }
657 
658 void Operator::print(llvm::raw_ostream &os) const {
659   os << "op '" << getOperationName() << "'\n";
660   for (Argument arg : arguments) {
661     if (auto *attr = arg.dyn_cast<NamedAttribute *>())
662       os << "[attribute] " << attr->name << '\n';
663     else
664       os << "[operand] " << arg.get<NamedTypeConstraint *>()->name << '\n';
665   }
666 }
667 
668 auto Operator::VariableDecoratorIterator::unwrap(llvm::Init *init)
669     -> VariableDecorator {
670   return VariableDecorator(cast<llvm::DefInit>(init)->getDef());
671 }
672 
673 auto Operator::getArgToOperandOrAttribute(int index) const
674     -> OperandOrAttribute {
675   return attrOrOperandMapping[index];
676 }
677 
678 // Helper to return the names for accessor.
679 static SmallVector<std::string, 2>
680 getGetterOrSetterNames(bool isGetter, const Operator &op, StringRef name) {
681   Dialect::EmitPrefix prefixType = op.getDialect().getEmitAccessorPrefix();
682   std::string prefix;
683   if (prefixType != Dialect::EmitPrefix::Raw)
684     prefix = isGetter ? "get" : "set";
685 
686   SmallVector<std::string, 2> names;
687   bool rawToo = prefixType == Dialect::EmitPrefix::Both;
688 
689   // Whether to skip generating prefixed form for argument. This just does some
690   // basic checks.
691   //
692   // There are a little bit more invasive checks possible for cases where not
693   // all ops have the trait that would cause overlap. For many cases here,
694   // renaming would be better (e.g., we can only guard in limited manner against
695   // methods from traits and interfaces here, so avoiding these in op definition
696   // is safer).
697   auto skip = [&](StringRef newName) {
698     bool shouldSkip = newName == "getAttributeNames" ||
699                       newName == "getAttributes" || newName == "getOperation";
700     if (newName == "getOperands") {
701       // To reduce noise, skip generating the prefixed form and the warning if
702       // $operands correspond to single variadic argument.
703       if (op.getNumOperands() == 1 && op.getNumVariableLengthOperands() == 1)
704         return true;
705       shouldSkip = true;
706     }
707     if (newName == "getRegions") {
708       if (op.getNumRegions() == 1 && op.getNumVariadicRegions() == 1)
709         return true;
710       shouldSkip = true;
711     }
712     if (newName == "getType") {
713       if (op.getNumResults() == 0)
714         return false;
715       shouldSkip = true;
716     }
717     if (!shouldSkip)
718       return false;
719 
720     // This note could be avoided where the final function generated would
721     // have been identical. But preferably in the op definition avoiding using
722     // the generic name and then getting a more specialize type is better.
723     PrintNote(op.getLoc(),
724               "Skipping generation of prefixed accessor `" + newName +
725                   "` as it overlaps with default one; generating raw form (`" +
726                   name + "`) still");
727     return true;
728   };
729 
730   if (!prefix.empty()) {
731     names.push_back(
732         prefix + convertToCamelFromSnakeCase(name, /*capitalizeFirst=*/true));
733     // Skip cases which would overlap with default ones for now.
734     if (skip(names.back())) {
735       rawToo = true;
736       names.clear();
737     } else if (rawToo) {
738       LLVM_DEBUG(llvm::errs() << "WITH_GETTER(\"" << op.getQualCppClassName()
739                               << "::" << name << "\")\n"
740                               << "WITH_GETTER(\"" << op.getQualCppClassName()
741                               << "Adaptor::" << name << "\")\n";);
742     }
743   }
744 
745   if (prefix.empty() || rawToo)
746     names.push_back(name.str());
747   return names;
748 }
749 
750 SmallVector<std::string, 2> Operator::getGetterNames(StringRef name) const {
751   return getGetterOrSetterNames(/*isGetter=*/true, *this, name);
752 }
753 
754 SmallVector<std::string, 2> Operator::getSetterNames(StringRef name) const {
755   return getGetterOrSetterNames(/*isGetter=*/false, *this, name);
756 }
757