Lines Matching defs:dialects
456 /// context does not allow unregistered dialects. The provided reader is used
513 MutableArrayRef<std::unique_ptr<BytecodeDialect>> dialects,
517 if (failed(parseEntry(reader, dialects, dialect, "dialect")))
540 MutableArrayRef<std::unique_ptr<BytecodeDialect>> dialects,
690 MutableArrayRef<std::unique_ptr<BytecodeDialect>> dialects,
740 if (failed(parseEntry(offsetReader, dialects, dialect, "dialect")) ||
814 initialize(MutableArrayRef<std::unique_ptr<BytecodeDialect>> dialects,
890 /// The map of the loaded dialects used to retrieve dialect information, such
1135 MutableArrayRef<std::unique_ptr<BytecodeDialect>> dialects,
1174 if (failed(parseDialectGrouping(offsetReader, dialects, parseEntryFn)))
1589 SmallVector<std::unique_ptr<BytecodeDialect>> dialects;
1703 dialects, *sectionDatas[bytecode::Section::kAttrType],
1774 // Parse the number of dialects in the section.
1778 dialects.resize(numDialects);
1780 // Parse each of the dialects.
1782 dialects[i] = std::make_unique<BytecodeDialect>();
1784 /// for dialects, and the entryIdx represent the string itself.
1786 if (failed(stringReader.parseString(sectionReader, dialects[i]->name)))
1798 dialects[i]->name)))
1803 dialects[i]->versionBuffer)))
1810 dialectsMap[dialects[i]->name] = dialects[i].get();
1841 if (failed(parseDialectGrouping(sectionReader, dialects, parseOpName)))
1859 // happen with unregistered dialects.
1898 return resourceReader.initialize(fileLoc, config, dialects, stringReader,
2097 for (const std::unique_ptr<BytecodeDialect> &byteCodeDialect : dialects) {