forked from OSchip/llvm-project
0c40af6b59
The current modeling of LLVM IR types in MLIR is based on the LLVMType class that wraps a raw `llvm::Type *` and delegates uniquing, printing and parsing to LLVM itself. This model makes thread-safe type manipulation hard and is being progressively replaced with a cleaner MLIR model that replicates the type system. Introduce a set of classes reflecting the LLVM IR type system in MLIR instead of wrapping the existing types. These are currently introduced as separate classes without affecting the dialect flow, and are exercised through a test dialect. Once feature parity is reached, the old implementation will be gradually substituted with the new one. Depends On D84171 Reviewed By: rriddle Differential Revision: https://reviews.llvm.org/D84339 |
||
---|---|---|
.. | ||
AffineParser.cpp | ||
AttributeParser.cpp | ||
CMakeLists.txt | ||
DialectSymbolParser.cpp | ||
Lexer.cpp | ||
Lexer.h | ||
LocationParser.cpp | ||
Parser.cpp | ||
Parser.h | ||
ParserState.h | ||
Token.cpp | ||
Token.h | ||
TokenKinds.def | ||
TypeParser.cpp |