blob: 9f619ffc5c4d304ac1f067e7da42a0d7a8a54d2f [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- DebugLoc.h - Debug Location Information ------------------*- 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 defines a number of light weight data structures used
11// to describe and track debug location information.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_IR_DEBUGLOC_H
16#define LLVM_IR_DEBUGLOC_H
17
18#include "llvm/IR/TrackingMDRef.h"
19#include "llvm/Support/DataTypes.h"
20
21namespace llvm {
22
23 class LLVMContext;
24 class raw_ostream;
25 class DILocation;
26
Andrew Scullcdfcccc2018-10-05 20:58:37 +010027 /// A debug info location.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010028 ///
29 /// This class is a wrapper around a tracking reference to an \a DILocation
30 /// pointer.
31 ///
32 /// To avoid extra includes, \a DebugLoc doubles the \a DILocation API with a
33 /// one based on relatively opaque \a MDNode pointers.
34 class DebugLoc {
35 TrackingMDNodeRef Loc;
36
37 public:
38 DebugLoc() = default;
39
Andrew Scullcdfcccc2018-10-05 20:58:37 +010040 /// Construct from an \a DILocation.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010041 DebugLoc(const DILocation *L);
42
Andrew Scullcdfcccc2018-10-05 20:58:37 +010043 /// Construct from an \a MDNode.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010044 ///
45 /// Note: if \c N is not an \a DILocation, a verifier check will fail, and
46 /// accessors will crash. However, construction from other nodes is
47 /// supported in order to handle forward references when reading textual
48 /// IR.
49 explicit DebugLoc(const MDNode *N);
50
Andrew Scullcdfcccc2018-10-05 20:58:37 +010051 /// Get the underlying \a DILocation.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010052 ///
53 /// \pre !*this or \c isa<DILocation>(getAsMDNode()).
54 /// @{
55 DILocation *get() const;
56 operator DILocation *() const { return get(); }
57 DILocation *operator->() const { return get(); }
58 DILocation &operator*() const { return *get(); }
59 /// @}
60
Andrew Scullcdfcccc2018-10-05 20:58:37 +010061 /// Check for null.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010062 ///
63 /// Check for null in a way that is safe with broken debug info. Unlike
64 /// the conversion to \c DILocation, this doesn't require that \c Loc is of
65 /// the right type. Important for cases like \a llvm::StripDebugInfo() and
66 /// \a Instruction::hasMetadata().
67 explicit operator bool() const { return Loc; }
68
Andrew Scullcdfcccc2018-10-05 20:58:37 +010069 /// Check whether this has a trivial destructor.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010070 bool hasTrivialDestructor() const { return Loc.hasTrivialDestructor(); }
71
Andrew Scullcdfcccc2018-10-05 20:58:37 +010072 /// Create a new DebugLoc.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010073 ///
74 /// Create a new DebugLoc at the specified line/col and scope/inline. This
75 /// forwards to \a DILocation::get().
76 ///
77 /// If \c !Scope, returns a default-constructed \a DebugLoc.
78 ///
79 /// FIXME: Remove this. Users should use DILocation::get().
80 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope,
81 const MDNode *InlinedAt = nullptr);
82
83 enum { ReplaceLastInlinedAt = true };
84 /// Rebuild the entire inlined-at chain for this instruction so that the top of
85 /// the chain now is inlined-at the new call site.
86 /// \param InlinedAt The new outermost inlined-at in the chain.
87 /// \param ReplaceLast Replace the last location in the inlined-at chain.
88 static DebugLoc appendInlinedAt(DebugLoc DL, DILocation *InlinedAt,
89 LLVMContext &Ctx,
90 DenseMap<const MDNode *, MDNode *> &Cache,
91 bool ReplaceLast = false);
92
93 unsigned getLine() const;
94 unsigned getCol() const;
95 MDNode *getScope() const;
96 DILocation *getInlinedAt() const;
97
Andrew Scullcdfcccc2018-10-05 20:58:37 +010098 /// Get the fully inlined-at scope for a DebugLoc.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010099 ///
100 /// Gets the inlined-at scope for a DebugLoc.
101 MDNode *getInlinedAtScope() const;
102
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100103 /// Find the debug info location for the start of the function.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100104 ///
105 /// Walk up the scope chain of given debug loc and find line number info
106 /// for the function.
107 ///
108 /// FIXME: Remove this. Users should use DILocation/DILocalScope API to
109 /// find the subprogram, and then DILocation::get().
110 DebugLoc getFnDebugLoc() const;
111
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100112 /// Return \c this as a bar \a MDNode.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100113 MDNode *getAsMDNode() const { return Loc; }
114
115 bool operator==(const DebugLoc &DL) const { return Loc == DL.Loc; }
116 bool operator!=(const DebugLoc &DL) const { return Loc != DL.Loc; }
117
118 void dump() const;
119
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100120 /// prints source location /path/to/file.exe:line:col @[inlined at]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100121 void print(raw_ostream &OS) const;
122 };
123
124} // end namespace llvm
125
126#endif /* LLVM_SUPPORT_DEBUGLOC_H */