blob: b58f7a0152aeb19576ac46c24b3e0f8fc02d5f30 [file] [log] [blame]
//=== WebAssemblyNullifyDebugValueLists.cpp - Nullify DBG_VALUE_LISTs ---===//
//
// 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
//
//===----------------------------------------------------------------------===//
///
/// \file
/// Nullify DBG_VALUE_LISTs instructions as a temporary measure before we
/// implement DBG_VALUE_LIST handling in WebAssemblyDebugValueManager.
/// See https://github.com/llvm/llvm-project/issues/49705.
/// TODO Correctly handle DBG_VALUE_LISTs
///
//===----------------------------------------------------------------------===//
#include "WebAssembly.h"
#include "WebAssemblySubtarget.h"
#include "llvm/CodeGen/MachineFunctionPass.h"
using namespace llvm;
#define DEBUG_TYPE "wasm-nullify-dbg-value-lists"
namespace {
class WebAssemblyNullifyDebugValueLists final : public MachineFunctionPass {
StringRef getPassName() const override {
return "WebAssembly Nullify DBG_VALUE_LISTs";
}
bool runOnMachineFunction(MachineFunction &MF) override;
public:
static char ID; // Pass identification, replacement for typeid
WebAssemblyNullifyDebugValueLists() : MachineFunctionPass(ID) {}
};
} // end anonymous namespace
char WebAssemblyNullifyDebugValueLists::ID = 0;
INITIALIZE_PASS(WebAssemblyNullifyDebugValueLists, DEBUG_TYPE,
"WebAssembly Nullify DBG_VALUE_LISTs", false, false)
FunctionPass *llvm::createWebAssemblyNullifyDebugValueLists() {
return new WebAssemblyNullifyDebugValueLists();
}
bool WebAssemblyNullifyDebugValueLists::runOnMachineFunction(
MachineFunction &MF) {
LLVM_DEBUG(dbgs() << "********** Nullify DBG_VALUE_LISTs **********\n"
"********** Function: "
<< MF.getName() << '\n');
bool Changed = false;
// Our backend, including WebAssemblyDebugValueManager, currently cannot
// handle DBG_VALUE_LISTs correctly. So this makes them undefined, which will
// appear as "optimized out".
for (auto &MBB : MF) {
for (auto &MI : MBB) {
if (MI.getOpcode() == TargetOpcode::DBG_VALUE_LIST) {
MI.setDebugValueUndef();
Changed = true;
}
}
}
return Changed;
}