c8bb3d8831c4ebb29434786f9726ecdccc9f412f
[oota-llvm.git] / lib / CodeGen / SelectionDAG / SDNodeDbgValue.h
1 //===-- llvm/CodeGen/SDNodeDbgValue.h - SelectionDAG dbg_value --*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the SDDbgValue class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_LIB_CODEGEN_SELECTIONDAG_SDNODEDBGVALUE_H
15 #define LLVM_LIB_CODEGEN_SELECTIONDAG_SDNODEDBGVALUE_H
16
17 #include "llvm/ADT/SmallVector.h"
18 #include "llvm/IR/DebugLoc.h"
19 #include "llvm/Support/DataTypes.h"
20
21 namespace llvm {
22
23 class MDNode;
24 class SDNode;
25 class Value;
26
27 /// SDDbgValue - Holds the information from a dbg_value node through SDISel.
28 /// We do not use SDValue here to avoid including its header.
29
30 class SDDbgValue {
31 public:
32   enum DbgValueKind {
33     SDNODE = 0,             // value is the result of an expression
34     CONST = 1,              // value is a constant
35     FRAMEIX = 2             // value is contents of a stack location
36   };
37 private:
38   enum DbgValueKind kind;
39   union {
40     struct {
41       SDNode *Node;         // valid for expressions
42       unsigned ResNo;       // valid for expressions
43     } s;
44     const Value *Const;     // valid for constants
45     unsigned FrameIx;       // valid for stack objects
46   } u;
47   MDNode *Var;
48   MDNode *Expr;
49   bool IsIndirect;
50   uint64_t Offset;
51   DebugLoc DL;
52   unsigned Order;
53   bool Invalid;
54 public:
55   // Constructor for non-constants.
56   SDDbgValue(MDNode *Var, MDNode *Expr, SDNode *N, unsigned R, bool indir,
57              uint64_t off, DebugLoc dl, unsigned O)
58       : Var(Var), Expr(Expr), IsIndirect(indir), Offset(off), DL(dl), Order(O),
59         Invalid(false) {
60     kind = SDNODE;
61     u.s.Node = N;
62     u.s.ResNo = R;
63   }
64
65   // Constructor for constants.
66   SDDbgValue(MDNode *Var, MDNode *Expr, const Value *C, uint64_t off,
67              DebugLoc dl, unsigned O)
68       : Var(Var), Expr(Expr), IsIndirect(false), Offset(off), DL(dl), Order(O),
69         Invalid(false) {
70     kind = CONST;
71     u.Const = C;
72   }
73
74   // Constructor for frame indices.
75   SDDbgValue(MDNode *Var, MDNode *Expr, unsigned FI, uint64_t off, DebugLoc dl,
76              unsigned O)
77       : Var(Var), Expr(Expr), IsIndirect(false), Offset(off), DL(dl), Order(O),
78         Invalid(false) {
79     kind = FRAMEIX;
80     u.FrameIx = FI;
81   }
82
83   // Returns the kind.
84   DbgValueKind getKind() { return kind; }
85
86   // Returns the MDNode pointer for the variable.
87   MDNode *getVariable() { return Var; }
88
89   // Returns the MDNode pointer for the expression.
90   MDNode *getExpression() { return Expr; }
91
92   // Returns the SDNode* for a register ref
93   SDNode *getSDNode() { assert (kind==SDNODE); return u.s.Node; }
94
95   // Returns the ResNo for a register ref
96   unsigned getResNo() { assert (kind==SDNODE); return u.s.ResNo; }
97
98   // Returns the Value* for a constant
99   const Value *getConst() { assert (kind==CONST); return u.Const; }
100
101   // Returns the FrameIx for a stack object
102   unsigned getFrameIx() { assert (kind==FRAMEIX); return u.FrameIx; }
103
104   // Returns whether this is an indirect value.
105   bool isIndirect() { return IsIndirect; }
106
107   // Returns the offset.
108   uint64_t getOffset() { return Offset; }
109
110   // Returns the DebugLoc.
111   DebugLoc getDebugLoc() { return DL; }
112
113   // Returns the SDNodeOrder.  This is the order of the preceding node in the
114   // input.
115   unsigned getOrder() { return Order; }
116
117   // setIsInvalidated / isInvalidated - Setter / getter of the "Invalidated"
118   // property. A SDDbgValue is invalid if the SDNode that produces the value is
119   // deleted.
120   void setIsInvalidated() { Invalid = true; }
121   bool isInvalidated() { return Invalid; }
122 };
123
124 } // end llvm namespace
125
126 #endif