1 //===- StripDebugInfo.cpp - Pass to strip debug information ---------------===//
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 #include "mlir/IR/Function.h"
10 #include "mlir/IR/Operation.h"
11 #include "mlir/Pass/Pass.h"
12 #include "mlir/Transforms/Passes.h"
13 
14 using namespace mlir;
15 
16 namespace {
17 struct StripDebugInfo : public OperationPass<StripDebugInfo> {
18   void runOnOperation() override;
19 };
20 } // end anonymous namespace
21 
22 void StripDebugInfo::runOnOperation() {
23   // Strip the debug info from all operations.
24   auto unknownLoc = UnknownLoc::get(&getContext());
25   getOperation()->walk([&](Operation *op) { op->setLoc(unknownLoc); });
26 }
27 
28 /// Creates a pass to strip debug information from a function.
29 std::unique_ptr<Pass> mlir::createStripDebugInfoPass() {
30   return std::make_unique<StripDebugInfo>();
31 }
32 
33 static PassRegistration<StripDebugInfo>
34     pass("strip-debuginfo", "Strip debug info from all operations");
35