2020-08-22 14:10:16 +01:00
|
|
|
//===- LiveDebugValues.cpp - Tracking Debug Value MIs ---------*- C++ -*---===//
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2021-01-30 09:53:42 -08:00
|
|
|
#ifndef LLVM_LIB_CODEGEN_LIVEDEBUGVALUES_LIVEDEBUGVALUES_H
|
|
|
|
#define LLVM_LIB_CODEGEN_LIVEDEBUGVALUES_LIVEDEBUGVALUES_H
|
|
|
|
|
2020-08-22 14:10:16 +01:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/CodeGen/TargetPassConfig.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
// Inline namespace for types / symbols shared between different
|
|
|
|
// LiveDebugValues implementations.
|
|
|
|
inline namespace SharedLiveDebugValues {
|
|
|
|
|
|
|
|
// Expose a base class for LiveDebugValues interfaces to inherit from. This
|
|
|
|
// allows the generic LiveDebugValues pass handles to call into the
|
|
|
|
// implementation.
|
|
|
|
class LDVImpl {
|
|
|
|
public:
|
|
|
|
virtual bool ExtendRanges(MachineFunction &MF, TargetPassConfig *TPC) = 0;
|
|
|
|
virtual ~LDVImpl() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace SharedLiveDebugValues
|
|
|
|
|
|
|
|
// Factory functions for LiveDebugValues implementations.
|
|
|
|
extern LDVImpl *makeVarLocBasedLiveDebugValues();
|
[LiveDebugValues] Add instruction-referencing LDV implementation
This patch imports the instruction-referencing implementation of
LiveDebugValues proposed here:
http://lists.llvm.org/pipermail/llvm-dev/2020-June/142368.html
The new implementation is unreachable in this patch, it's the next patch
that enables it behind a command line switch. Briefly, rather than
tracking variable locations by just their location as the 'VarLoc'
implementation does, this implementation does it by value:
* Each value defined in a function is numbered, and propagated through
dataflow,
* Each DBG_VALUE reads a machine value number from a machine location,
* Variable _values_ are propagated through dataflow,
* Variable values are translated back into locations, DBG_VALUEs
inserted to specify where those locations are.
The ultimate aim of this is to enable referring to variable values
throughout post-isel code, rather than locations. Those patches will
build on top of this new LiveDebugValues implementation in later patches
-- it can't be done with the VarLoc implementation as we don't have
value information, only locations.
Differential Revision: https://reviews.llvm.org/D83047
2020-08-22 16:07:39 +01:00
|
|
|
extern LDVImpl *makeInstrRefBasedLiveDebugValues();
|
2020-08-22 14:10:16 +01:00
|
|
|
} // namespace llvm
|
2021-01-30 09:53:42 -08:00
|
|
|
|
|
|
|
#endif // LLVM_LIB_CODEGEN_LIVEDEBUGVALUES_LIVEDEBUGVALUES_H
|