1 //===-- DebugLoc.cpp - Implement DebugLoc class ---------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #include "llvm/IR/DebugLoc.h"
11 #include "LLVMContextImpl.h"
12 #include "llvm/IR/DebugInfo.h"
15 //===----------------------------------------------------------------------===//
16 // DebugLoc Implementation
17 //===----------------------------------------------------------------------===//
18 DebugLoc::DebugLoc(const DILocation
*L
) : Loc(const_cast<DILocation
*>(L
)) {}
19 DebugLoc::DebugLoc(const MDNode
*L
) : Loc(const_cast<MDNode
*>(L
)) {}
21 DILocation
*DebugLoc::get() const {
22 return cast_or_null
<DILocation
>(Loc
.get());
25 unsigned DebugLoc::getLine() const {
26 assert(get() && "Expected valid DebugLoc");
27 return get()->getLine();
30 unsigned DebugLoc::getCol() const {
31 assert(get() && "Expected valid DebugLoc");
32 return get()->getColumn();
35 MDNode
*DebugLoc::getScope() const {
36 assert(get() && "Expected valid DebugLoc");
37 return get()->getScope();
40 DILocation
*DebugLoc::getInlinedAt() const {
41 assert(get() && "Expected valid DebugLoc");
42 return get()->getInlinedAt();
45 MDNode
*DebugLoc::getInlinedAtScope() const {
46 return cast
<DILocation
>(Loc
)->getInlinedAtScope();
49 DebugLoc
DebugLoc::getFnDebugLoc() const {
50 // FIXME: Add a method on \a DILocation that does this work.
51 const MDNode
*Scope
= getInlinedAtScope();
52 if (auto *SP
= getDISubprogram(Scope
))
53 return DebugLoc::get(SP
->getScopeLine(), 0, SP
);
58 DebugLoc
DebugLoc::get(unsigned Line
, unsigned Col
, const MDNode
*Scope
,
59 const MDNode
*InlinedAt
) {
60 // If no scope is available, this is an unknown location.
64 return DILocation::get(Scope
->getContext(), Line
, Col
,
65 const_cast<MDNode
*>(Scope
),
66 const_cast<MDNode
*>(InlinedAt
));
69 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
70 LLVM_DUMP_METHOD
void DebugLoc::dump() const {
76 dbgs() << ',' << getCol();
77 if (DebugLoc InlinedAtDL
= DebugLoc(getInlinedAt())) {
85 void DebugLoc::print(raw_ostream
&OS
) const {
89 // Print source line info.
90 auto *Scope
= cast
<DIScope
>(getScope());
91 OS
<< Scope
->getFilename();
92 OS
<< ':' << getLine();
94 OS
<< ':' << getCol();
96 if (DebugLoc InlinedAtDL
= getInlinedAt()) {
98 InlinedAtDL
.print(OS
);