Lines Matching refs:DebugLoc
19 DebugLoc::DebugLoc(const DILocation *L) : Loc(const_cast<DILocation *>(L)) {} in DebugLoc() function in DebugLoc
20 DebugLoc::DebugLoc(const MDNode *L) : Loc(const_cast<MDNode *>(L)) {} in DebugLoc() function in DebugLoc
22 DILocation *DebugLoc::get() const { in get()
26 unsigned DebugLoc::getLine() const { in getLine()
31 unsigned DebugLoc::getCol() const { in getCol()
36 MDNode *DebugLoc::getScope() const { in getScope()
41 DILocation *DebugLoc::getInlinedAt() const { in getInlinedAt()
46 MDNode *DebugLoc::getInlinedAtScope() const { in getInlinedAtScope()
50 DebugLoc DebugLoc::getFnDebugLoc() const { in getFnDebugLoc()
54 return DebugLoc::get(SP->getScopeLine(), 0, SP); in getFnDebugLoc()
56 return DebugLoc(); in getFnDebugLoc()
59 bool DebugLoc::isImplicitCode() const { in isImplicitCode()
66 void DebugLoc::setImplicitCode(bool ImplicitCode) { in setImplicitCode()
72 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, const MDNode *Scope, in get()
76 return DebugLoc(); in get()
83 DebugLoc DebugLoc::appendInlinedAt(DebugLoc DL, DILocation *InlinedAt, in appendInlinedAt()
116 LLVM_DUMP_METHOD void DebugLoc::dump() const { print(dbgs()); } in dump()
119 void DebugLoc::print(raw_ostream &OS) const { in print()
130 if (DebugLoc InlinedAtDL = getInlinedAt()) { in print()