[Mlir-commits] [mlir] [mlir] Make overloads of SymbolTable::replaceAllSymbolUses consistent. (PR #68320)
Oleksandr Alex Zinenko
llvmlistbot at llvm.org
Fri Oct 6 02:18:55 PDT 2023
Ingo =?utf-8?q?Müller?= <ingomueller at google.com>
Message-ID:
In-Reply-To: <llvm/llvm-project/pull/68320/mlir at github.com>
================
@@ -0,0 +1,107 @@
+//===- SymbolTableTest.cpp - SymbolTable unit tests -----------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+#include "mlir/IR/SymbolTable.h"
+#include "../../test/lib/Dialect/Test/TestDialect.h"
+#include "mlir/IR/Verifier.h"
+#include "mlir/Interfaces/CallInterfaces.h"
+#include "mlir/Interfaces/FunctionInterfaces.h"
+#include "mlir/Parser/Parser.h"
+
+#include "gtest/gtest.h"
+
+using namespace mlir;
+
+namespace {
+TEST(SymbolTableTest, ReplaceAllSymbolUses) {
+ MLIRContext context;
+ context.getOrLoadDialect<test::TestDialect>();
+
+ auto testReplaceAllSymbolUses = [&](auto replaceFn) {
+ const static llvm::StringLiteral input = R"MLIR(
+ module {
+ test.conversion_func_op private @foo() {
+ "test.conversion_call_op"() { callee=@bar } : () -> ()
+ "test.return"() : () -> ()
+ }
+ test.conversion_func_op private @bar()
+ }
+ )MLIR";
+
+ // Set up IR and find func ops.
+ OwningOpRef<Operation *> module = parseSourceString(input, &context);
+ SymbolTable symbolTable(module.get());
+ auto ops = module->getRegion(0).getBlocks().front().getOperations().begin();
----------------
ftynse wrote:
Nit: I would call this `opIterator`, `ops` sounds like a range.
https://github.com/llvm/llvm-project/pull/68320
More information about the Mlir-commits
mailing list