LLVM 19.0.0git
WebAssemblyNullifyDebugValueLists.cpp
Go to the documentation of this file.
1//=== WebAssemblyNullifyDebugValueLists.cpp - Nullify DBG_VALUE_LISTs ---===//
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/// \file
10/// Nullify DBG_VALUE_LISTs instructions as a temporary measure before we
11/// implement DBG_VALUE_LIST handling in WebAssemblyDebugValueManager.
12/// See https://github.com/llvm/llvm-project/issues/49705.
13/// TODO Correctly handle DBG_VALUE_LISTs
14///
15//===----------------------------------------------------------------------===//
16
17#include "WebAssembly.h"
20using namespace llvm;
21
22#define DEBUG_TYPE "wasm-nullify-dbg-value-lists"
23
24namespace {
25class WebAssemblyNullifyDebugValueLists final : public MachineFunctionPass {
26 StringRef getPassName() const override {
27 return "WebAssembly Nullify DBG_VALUE_LISTs";
28 }
29
30 bool runOnMachineFunction(MachineFunction &MF) override;
31
32public:
33 static char ID; // Pass identification, replacement for typeid
34 WebAssemblyNullifyDebugValueLists() : MachineFunctionPass(ID) {}
35};
36} // end anonymous namespace
37
38char WebAssemblyNullifyDebugValueLists::ID = 0;
39INITIALIZE_PASS(WebAssemblyNullifyDebugValueLists, DEBUG_TYPE,
40 "WebAssembly Nullify DBG_VALUE_LISTs", false, false)
41
43 return new WebAssemblyNullifyDebugValueLists();
44}
45
46bool WebAssemblyNullifyDebugValueLists::runOnMachineFunction(
47 MachineFunction &MF) {
48 LLVM_DEBUG(dbgs() << "********** Nullify DBG_VALUE_LISTs **********\n"
49 "********** Function: "
50 << MF.getName() << '\n');
51 bool Changed = false;
52 // Our backend, including WebAssemblyDebugValueManager, currently cannot
53 // handle DBG_VALUE_LISTs correctly. So this makes them undefined, which will
54 // appear as "optimized out".
55 for (auto &MBB : MF) {
56 for (auto &MI : MBB) {
57 if (MI.getOpcode() == TargetOpcode::DBG_VALUE_LIST) {
58 MI.setDebugValueUndef();
59 Changed = true;
60 }
61 }
62 }
63 return Changed;
64}
MachineBasicBlock & MBB
#define LLVM_DEBUG(X)
Definition: Debug.h:101
IRTranslator LLVM IR MI
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:38
This file declares the WebAssembly-specific subclass of TargetSubtarget.
This file contains the entry points for global functions defined in the LLVM WebAssembly back-end.
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
virtual bool runOnMachineFunction(MachineFunction &MF)=0
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Definition: Pass.cpp:81
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
FunctionPass * createWebAssemblyNullifyDebugValueLists()