[Mlir-commits] [mlir] [mlir][bytecode] Add support for deferred attribute/type parsing. (PR #170993)
Mehdi Amini
llvmlistbot at llvm.org
Tue Dec 9 04:20:08 PST 2025
================
@@ -909,23 +932,33 @@ class AttrTypeReader {
llvm::getTypeName<T>(), ", but got: ", baseResult);
}
+ /// Add an index to the deferred worklist for re-parsing.
+ void addDeferredParsing(uint64_t index) { deferredWorklist.push_back(index); }
+
private:
/// Resolve the given entry at `index`.
----------------
joker-eph wrote:
Can you document "depth" here and elsewhere?
https://github.com/llvm/llvm-project/pull/170993
More information about the Mlir-commits
mailing list