Integrate llvm-project at d5db25fb1d0863f4f82445f2812bb64793429583 (#8137)
* Reset third_party/llvm-project: d5db25fb1d0863f4f82445f2812bb64793429583 (2022-01-18 18:48:43 -0800): [mlir][textmate] Add support for function visibility
* Delete dialect parse/print hooks that are now auto-generated.
* Remove redundant generated dialect parse/print from iree_input.
* Bump mhlo to pickup changes for https://reviews.llvm.org/D117524.
* Handle auto-generated print/parse attr/type conflicts.
* Disables auto generated for dialects that do meaningful things. Deletes those that are just boilerplate.
* Renames tablegen FLOW_Dialect -> Flow_Dialect since the generated class names are derived from that and need to match.
* Hard fork iree-dialects to integrations/tensorflow.
We should have done this from the beginning and then updated it explicitly on frontend upgrades (which is what out of tree is doing).
Effectively, this directory is an island within the repo and must be isolated. This broke as changes to make it compatible with LLVM head don't work for the frontend version.
* Fix remaining build errors.
* Fix Codegen lit tests.
* Fix more lit tests.
* Fix yapf error.
* Fix last failing lit test.
* Fix failing python lit tests.
* Fix pydm.functional_if printer to print a space before the region start.
(this used to happen implicitly)
Co-authored-by: MaheshRavishankar <ravishankarm@google.com>
diff --git a/llvm-external-projects/iree-dialects/lib/Dialect/PyDM/IR/PyDMOps.cpp b/llvm-external-projects/iree-dialects/lib/Dialect/PyDM/IR/PyDMOps.cpp
index 3b3e961..926cc98 100644
--- a/llvm-external-projects/iree-dialects/lib/Dialect/PyDM/IR/PyDMOps.cpp
+++ b/llvm-external-projects/iree-dialects/lib/Dialect/PyDM/IR/PyDMOps.cpp
@@ -488,6 +488,7 @@
// Print yield explicitly if the op defines values.
printBlockTerminators = true;
}
+ p << " ";
p.printRegion(op.thenRegion(),
/*printEntryBlockArgs=*/false,
/*printBlockTerminators=*/printBlockTerminators);
@@ -495,7 +496,7 @@
// Print the 'else' regions if it exists and has a block.
auto &elseRegion = op.elseRegion();
if (!elseRegion.empty()) {
- p << " else";
+ p << " else ";
p.printRegion(elseRegion,
/*printEntryBlockArgs=*/false,
/*printBlockTerminators=*/printBlockTerminators);