2019-01-24 12:48:23 +08:00
|
|
|
//===- StripDebugInfo.cpp - Pass to strip debug information ---------------===//
|
|
|
|
//
|
|
|
|
// Copyright 2019 The MLIR Authors.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
// =============================================================================
|
|
|
|
|
|
|
|
#include "mlir/IR/Function.h"
|
2019-02-04 01:49:39 +08:00
|
|
|
#include "mlir/IR/Instruction.h"
|
2019-02-20 09:17:46 +08:00
|
|
|
#include "mlir/Pass/Pass.h"
|
2019-01-24 12:48:23 +08:00
|
|
|
#include "mlir/Transforms/Passes.h"
|
|
|
|
|
|
|
|
using namespace mlir;
|
|
|
|
|
|
|
|
namespace {
|
2019-02-28 02:59:29 +08:00
|
|
|
struct StripDebugInfo : public FunctionPass<StripDebugInfo> {
|
2019-03-01 06:50:42 +08:00
|
|
|
void runOnFunction() override;
|
2019-01-24 12:48:23 +08:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2019-03-01 06:50:42 +08:00
|
|
|
void StripDebugInfo::runOnFunction() {
|
2019-03-06 07:05:34 +08:00
|
|
|
Function *func = getFunction();
|
|
|
|
UnknownLoc unknownLoc = UnknownLoc::get(func->getContext());
|
2019-01-24 12:48:23 +08:00
|
|
|
|
|
|
|
// Strip the debug info from the function and its instructions.
|
2019-03-06 07:05:34 +08:00
|
|
|
func->setLoc(unknownLoc);
|
|
|
|
func->walk([&](Instruction *inst) { inst->setLoc(unknownLoc); });
|
2019-01-24 12:48:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a pass to strip debug information from a function.
|
2019-02-28 02:59:29 +08:00
|
|
|
FunctionPassBase *mlir::createStripDebugInfoPass() {
|
|
|
|
return new StripDebugInfo();
|
|
|
|
}
|
2019-01-24 12:48:23 +08:00
|
|
|
|
|
|
|
static PassRegistration<StripDebugInfo>
|
2019-01-31 01:37:47 +08:00
|
|
|
pass("strip-debuginfo", "Strip debug info from functions and instructions");
|