Details
- Reviewers
herhut ftynse frgossen - Commits
- rG992516857691: [mlir] Convert `memref_reshape` to LLVM.
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp | ||
---|---|---|
2420 | Nit: could we have a doc for this function? | |
2455–2456 | Nit: would it be reasonable to have these things as additional accessors on UnrankedMemRefDescriptor? | |
2468–2471 | I wonder if we cannot run into issues because of alignment properties on some weird architectures. The descriptor structure is not packed, so it is subject to alignment rules between elements as defined by LLVM's data layout. I don't have an example offhand, so it may be always fine, so I'd appreciate an argument why it is a safe thing to do in a comment. Otherwise, LLVMTypeConverter contains the llvm::DataLayout that we are targeting, which can be used to get proper offsets of elements in bytes and do all indexing arithmetic after bitcasting to i8*. | |
2572 | Please fix | |
2609–2611 | Nit: LLVM::LLVMType was fine here | |
2618–2619 | Can't we use createIndexConstant instead here? Or at least not hardcode i32, I think there was some option controlling the bit size of the address arithmetic | |
2625–2630 | Putting these addressing tricks (which are cool, I must admit!) into the UnrankedMemRefDescriptor sounds even more appealing to me. Since we seem to always need the triple allocated/aligned/store, we can have a function for those. | |
2651–2652 | addArgument is invalid in conversion patterns, similarly to other in-place updates. rewriter.createBlock creates block with arguments, but you'd need to clone the remaining operations in there. Maybe splitBlock can be extended to also add arguments to the newly created block. (I suspect the addArgument will most likely just work even if we rollback the change, but it may run into some bad use-def loop) | |
2675 | (Beyond the scope): I wonder if we could later refactor this and the SCF-to-std lowering in a createLoop(function_ref bodyBuilder, function_ref conditionBuilder) that produces std control flow; the pattern infra will then lower the std ops into LLVM automatically. |
mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp | ||
---|---|---|
2468–2471 | I am not sure how many architectures, not to mention weird ones, are using unranked code generation. I would leave it like that for now and use llvm::DataLayout later if needed. | |
2625–2630 | I added setters/getters to UnrankedMemRefDescriptor. At first I intended to have a separate PR that adds them, but it looks like the current PR is the best way to actually test them. | |
2675 | Yes, that would be much more readable. |
mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp | ||
---|---|---|
2651–2652 | extending splitBlock looks much harder than just using createBlock and cloning the remaining ops. I ll do that tomorrow. |
mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp | ||
---|---|---|
2468–2471 | Let's keep a TODO comment then. If we ever run into a problem, will be easier to debug. |
Nit: could we have a doc for this function?