diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2014-11-24 09:08:18 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2014-11-24 09:08:18 +0000 | 
| commit | 5ca98fd98791947eba83a1ed3f2c8191ef7afa6c (patch) | |
| tree | f5944309621cee4fe0976be6f9ac619b7ebfc4c2 /lib/CodeGen/SelectionDAG/SDNodeDbgValue.h | |
| parent | 68bcb7db193e4bc81430063148253d30a791023e (diff) | |
Notes
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SDNodeDbgValue.h')
| -rw-r--r-- | lib/CodeGen/SelectionDAG/SDNodeDbgValue.h | 18 | 
1 files changed, 13 insertions, 5 deletions
| diff --git a/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h b/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h index 4af7172847d7..ee5429283112 100644 --- a/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h +++ b/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h @@ -15,8 +15,8 @@  #define LLVM_CODEGEN_SDNODEDBGVALUE_H  #include "llvm/ADT/SmallVector.h" +#include "llvm/IR/DebugLoc.h"  #include "llvm/Support/DataTypes.h" -#include "llvm/Support/DebugLoc.h"  namespace llvm { @@ -45,14 +45,17 @@ private:      unsigned FrameIx;       // valid for stack objects    } u;    MDNode *mdPtr; +  bool IsIndirect;    uint64_t Offset;    DebugLoc DL;    unsigned Order;    bool Invalid;  public:    // Constructor for non-constants. -  SDDbgValue(MDNode *mdP, SDNode *N, unsigned R, uint64_t off, DebugLoc dl, -             unsigned O) : mdPtr(mdP), Offset(off), DL(dl), Order(O), +  SDDbgValue(MDNode *mdP, SDNode *N, unsigned R, +	     bool indir, uint64_t off, DebugLoc dl, +             unsigned O) : mdPtr(mdP), IsIndirect(indir), +			   Offset(off), DL(dl), Order(O),                             Invalid(false) {      kind = SDNODE;      u.s.Node = N; @@ -62,14 +65,16 @@ public:    // Constructor for constants.    SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl,               unsigned O) :  -    mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) { +    mdPtr(mdP), IsIndirect(false), Offset(off), DL(dl), Order(O), +    Invalid(false) {      kind = CONST;      u.Const = C;    }    // Constructor for frame indices.    SDDbgValue(MDNode *mdP, unsigned FI, uint64_t off, DebugLoc dl, unsigned O) :  -    mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) { +    mdPtr(mdP), IsIndirect(false), Offset(off), DL(dl), Order(O), +    Invalid(false) {      kind = FRAMEIX;      u.FrameIx = FI;    } @@ -92,6 +97,9 @@ public:    // Returns the FrameIx for a stack object    unsigned getFrameIx() { assert (kind==FRAMEIX); return u.FrameIx; } +  // Returns whether this is an indirect value. +  bool isIndirect() { return IsIndirect; } +    // Returns the offset.    uint64_t getOffset() { return Offset; } | 
