[all-commits] [llvm/llvm-project] 5af147: [mlir][Transforms][NFC] Simplify `ArgConverter` state

Matthias Springer via All-commits all-commits at lists.llvm.org
Mon Feb 12 02:55:51 PST 2024


  Branch: refs/heads/users/matthias-springer/simplify_arg_converter
  Home:   https://github.com/llvm/llvm-project
  Commit: 5af1476c5d439c14122ffb50d24923e522a61b32
      https://github.com/llvm/llvm-project/commit/5af1476c5d439c14122ffb50d24923e522a61b32
  Author: Matthias Springer <springerm at google.com>
  Date:   2024-02-12 (Mon, 12 Feb 2024)

  Changed paths:
    M mlir/lib/Transforms/Utils/DialectConversion.cpp

  Log Message:
  -----------
  [mlir][Transforms][NFC] Simplify `ArgConverter` state

* When converting a block signature, `ArgConverter` creates a new block with the new signature and moves all operation from the old block to the new block. The new block is temporarily inserted into a region that is stored in `regionMapping`. The old block is not yet deleted, so that the conversion can be rolled back. `regionMapping` is not needed. Instead of moving the old block to a temporary region, it can just be unlinked. Block erasures are handles in the same way in the dialect conversion.
* `regionToConverter` is a mapping from regions to type converter. That field is never accessed within `ArgConverter`. It should be stored in `ConversionPatternRewriterImpl` instead.




More information about the All-commits mailing list