Home | History | Annotate | Download | only in VMCore

Lines Matching refs:DebugLoc

1 //===-- DebugLoc.cpp - Implement DebugLoc class ---------------------------===//
10 #include "llvm/Support/DebugLoc.h"
16 // DebugLoc Implementation
19 MDNode *DebugLoc::getScope(const LLVMContext &Ctx) const {
36 MDNode *DebugLoc::getInlinedAt(const LLVMContext &Ctx) const {
48 void DebugLoc::getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA,
73 DebugLoc DebugLoc::get(unsigned Line, unsigned Col,
75 DebugLoc Result;
97 /// getAsMDNode - This method converts the compressed DebugLoc node into a
99 MDNode *DebugLoc::getAsMDNode(const LLVMContext &Ctx) const {
115 /// getFromDILocation - Translate the DILocation quad into a DebugLoc.
116 DebugLoc DebugLoc::getFromDILocation(MDNode *N) {
117 if (N == 0 || N->getNumOperands() != 4) return DebugLoc();
120 if (Scope == 0) return DebugLoc();
131 /// getFromDILexicalBlock - Translate the DILexicalBlock into a DebugLoc.
132 DebugLoc DebugLoc::getFromDILexicalBlock(MDNode *N) {
133 if (N == 0 || N->getNumOperands() < 3) return DebugLoc();
136 if (Scope == 0) return DebugLoc();
147 void DebugLoc::dump(const LLVMContext &Ctx) const {
153 DebugLoc InlinedAtDL = DebugLoc::getFromDILocation(getInlinedAt(Ctx));
167 DebugLoc DenseMapInfo<DebugLoc>::getEmptyKey() {
168 return DebugLoc::getEmptyKey();
171 DebugLoc DenseMapInfo<DebugLoc>::getTombstoneKey() {
172 return DebugLoc::getTombstoneKey();
175 unsigned DenseMapInfo<DebugLoc>::getHashValue(const DebugLoc &Key) {
182 bool DenseMapInfo<DebugLoc>::isEqual(const DebugLoc &LHS, const DebugLoc &RHS) {