aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/AsmPrinter/DebugLocEntry.h
blob: 470453fbe26fd9d9896edbe44fa4909c8e22dbbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
//===-- llvm/CodeGen/DebugLocEntry.h - Entry in debug_loc list -*- C++ -*--===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef CODEGEN_ASMPRINTER_DEBUGLOCENTRY_H__
#define CODEGEN_ASMPRINTER_DEBUGLOCENTRY_H__
#include "llvm/IR/Constants.h"
#include "llvm/MC/MachineLocation.h"
#include "llvm/MC/MCSymbol.h"

namespace llvm {
class DwarfCompileUnit;
class MDNode;
/// \brief This struct describes location entries emitted in the .debug_loc
/// section.
class DebugLocEntry {
  // Begin and end symbols for the address range that this location is valid.
  const MCSymbol *Begin;
  const MCSymbol *End;

  // Type of entry that this represents.
  enum EntryType { E_Location, E_Integer, E_ConstantFP, E_ConstantInt };
  enum EntryType EntryKind;

  union {
    int64_t Int;
    const ConstantFP *CFP;
    const ConstantInt *CIP;
  } Constants;

  // The location in the machine frame.
  MachineLocation Loc;

  // The variable to which this location entry corresponds.
  const MDNode *Variable;

  // The compile unit to which this location entry is referenced by.
  const DwarfCompileUnit *Unit;

  bool hasSameValueOrLocation(const DebugLocEntry &Next) {
    if (EntryKind != Next.EntryKind)
      return false;

    bool EqualValues;
    switch (EntryKind) {
    case E_Location:
      EqualValues = Loc == Next.Loc;
      break;
    case E_Integer:
      EqualValues = Constants.Int == Next.Constants.Int;
      break;
    case E_ConstantFP:
      EqualValues = Constants.CFP == Next.Constants.CFP;
      break;
    case E_ConstantInt:
      EqualValues = Constants.CIP == Next.Constants.CIP;
      break;
    }

    return EqualValues;
  }

public:
  DebugLocEntry() : Begin(0), End(0), Variable(0), Unit(0) {
    Constants.Int = 0;
  }
  DebugLocEntry(const MCSymbol *B, const MCSymbol *E, MachineLocation &L,
                const MDNode *V, const DwarfCompileUnit *U)
      : Begin(B), End(E), Loc(L), Variable(V), Unit(U) {
    Constants.Int = 0;
    EntryKind = E_Location;
  }
  DebugLocEntry(const MCSymbol *B, const MCSymbol *E, int64_t i,
                const DwarfCompileUnit *U)
      : Begin(B), End(E), Variable(0), Unit(U) {
    Constants.Int = i;
    EntryKind = E_Integer;
  }
  DebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantFP *FPtr,
                const DwarfCompileUnit *U)
      : Begin(B), End(E), Variable(0), Unit(U) {
    Constants.CFP = FPtr;
    EntryKind = E_ConstantFP;
  }
  DebugLocEntry(const MCSymbol *B, const MCSymbol *E, const ConstantInt *IPtr,
                const DwarfCompileUnit *U)
      : Begin(B), End(E), Variable(0), Unit(U) {
    Constants.CIP = IPtr;
    EntryKind = E_ConstantInt;
  }

  /// \brief Attempt to merge this DebugLocEntry with Next and return
  /// true if the merge was successful. Entries can be merged if they
  /// share the same Loc/Constant and if Next immediately follows this
  /// Entry.
  bool Merge(const DebugLocEntry &Next) {
    if (End == Next.Begin && hasSameValueOrLocation(Next)) {
      End = Next.End;
      return true;
    }
    return false;
  }
  bool isLocation() const { return EntryKind == E_Location; }
  bool isInt() const { return EntryKind == E_Integer; }
  bool isConstantFP() const { return EntryKind == E_ConstantFP; }
  bool isConstantInt() const { return EntryKind == E_ConstantInt; }
  int64_t getInt() const { return Constants.Int; }
  const ConstantFP *getConstantFP() const { return Constants.CFP; }
  const ConstantInt *getConstantInt() const { return Constants.CIP; }
  const MDNode *getVariable() const { return Variable; }
  const MCSymbol *getBeginSym() const { return Begin; }
  const MCSymbol *getEndSym() const { return End; }
  const DwarfCompileUnit *getCU() const { return Unit; }
  MachineLocation getLoc() const { return Loc; }
};

}
#endif