[PATCH] D133286: [NFC] Add `DebugVariable` constructor that takes `DbgVariableIntrinsic *`
Orlando Cazalet-Hyams via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 20 07:29:29 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Orlando marked an inline comment as done.
Closed by commit rG50d9bb6b39c5: [NFC] Add DebugVariable constructor that takes DbgVariableIntrinsic pointer (authored by Orlando).
Changed prior to commit:
https://reviews.llvm.org/D133286?vs=457912&id=469227#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D133286/new/
https://reviews.llvm.org/D133286
Files:
llvm/include/llvm/IR/DebugInfoMetadata.h
llvm/lib/IR/DebugInfoMetadata.cpp
Index: llvm/lib/IR/DebugInfoMetadata.cpp
===================================================================
--- llvm/lib/IR/DebugInfoMetadata.cpp
+++ llvm/lib/IR/DebugInfoMetadata.cpp
@@ -17,6 +17,7 @@
#include "llvm/ADT/StringSwitch.h"
#include "llvm/BinaryFormat/Dwarf.h"
#include "llvm/IR/Function.h"
+#include "llvm/IR/IntrinsicInst.h"
#include "llvm/IR/Type.h"
#include "llvm/IR/Value.h"
@@ -34,6 +35,11 @@
const DIExpression::FragmentInfo DebugVariable::DefaultFragment = {
std::numeric_limits<uint64_t>::max(), std::numeric_limits<uint64_t>::min()};
+DebugVariable::DebugVariable(const DbgVariableIntrinsic *DII)
+ : Variable(DII->getVariable()),
+ Fragment(DII->getExpression()->getFragmentInfo()),
+ InlinedAt(DII->getDebugLoc().getInlinedAt()) {}
+
DILocation::DILocation(LLVMContext &C, StorageType Storage, unsigned Line,
unsigned Column, ArrayRef<Metadata *> MDs,
bool ImplicitCode)
Index: llvm/include/llvm/IR/DebugInfoMetadata.h
===================================================================
--- llvm/include/llvm/IR/DebugInfoMetadata.h
+++ llvm/include/llvm/IR/DebugInfoMetadata.h
@@ -64,6 +64,8 @@
enum Tag : uint16_t;
}
+class DbgVariableIntrinsic;
+
extern cl::opt<bool> EnableFSDiscriminator;
class DITypeRefArray {
@@ -3629,6 +3631,8 @@
static const FragmentInfo DefaultFragment;
public:
+ DebugVariable(const DbgVariableIntrinsic *DII);
+
DebugVariable(const DILocalVariable *Var, Optional<FragmentInfo> FragmentInfo,
const DILocation *InlinedAt)
: Variable(Var), Fragment(FragmentInfo), InlinedAt(InlinedAt) {}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D133286.469227.patch
Type: text/x-patch
Size: 1659 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221020/dc8b9a12/attachment.bin>
More information about the llvm-commits
mailing list