[rtsan] Remove mkfifoat interceptor (#116997)
[llvm-project.git] / mlir / lib / Transforms / SymbolPrivatize.cpp
blob58fafa7e2b58ac198b43f5dc09e6c15426f47afc
1 //===- SymbolPrivatize.cpp - Pass to mark symbols private -----------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements an pass that marks all symbols as private unless
10 // excluded.
12 //===----------------------------------------------------------------------===//
14 #include "mlir/Transforms/Passes.h"
16 #include "mlir/IR/SymbolTable.h"
18 namespace mlir {
19 #define GEN_PASS_DEF_SYMBOLPRIVATIZE
20 #include "mlir/Transforms/Passes.h.inc"
21 } // namespace mlir
23 using namespace mlir;
25 namespace {
26 struct SymbolPrivatize : public impl::SymbolPrivatizeBase<SymbolPrivatize> {
27 explicit SymbolPrivatize(ArrayRef<std::string> excludeSymbols);
28 LogicalResult initialize(MLIRContext *context) override;
29 void runOnOperation() override;
31 /// Symbols whose visibility won't be changed.
32 DenseSet<StringAttr> excludedSymbols;
34 } // namespace
36 SymbolPrivatize::SymbolPrivatize(llvm::ArrayRef<std::string> excludeSymbols) {
37 exclude = excludeSymbols;
40 LogicalResult SymbolPrivatize::initialize(MLIRContext *context) {
41 for (const std::string &symbol : exclude)
42 excludedSymbols.insert(StringAttr::get(context, symbol));
43 return success();
46 void SymbolPrivatize::runOnOperation() {
47 for (Region &region : getOperation()->getRegions()) {
48 for (Block &block : region) {
49 for (Operation &op : block) {
50 auto symbol = dyn_cast<SymbolOpInterface>(op);
51 if (!symbol)
52 continue;
53 if (!excludedSymbols.contains(symbol.getNameAttr()))
54 symbol.setVisibility(SymbolTable::Visibility::Private);
60 std::unique_ptr<Pass>
61 mlir::createSymbolPrivatizePass(ArrayRef<std::string> exclude) {
62 return std::make_unique<SymbolPrivatize>(exclude);