Searched defs:DebugLoc (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/IR/
H A DDebugLoc.h1 //===- DebugLoc.h - Debug Location Information ------------------*- C++ -*-===//
26 /// DebugLoc - Debug location id. This is carried by Instruction, SDNode,
29 class DebugLoc { class in namespace:llvm
30 friend struct DenseMapInfo<DebugLoc>;
33 /// not equal to the tombstone key or DebugLoc().
34 static DebugLoc getEmptyKey() {
35 DebugLoc DL;
41 /// is not equal to the empty key or DebugLoc().
42 static DebugLoc getTombstoneKey() {
43 DebugLoc D
57 DebugLoc() : LineCol(0), ScopeIdx(0) {} // Defaults to unknown. function in class:llvm::DebugLoc
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1079 // because the DebugLoc on the dbg.value/declare isn't accurate. We should
1213 DebugLoc DL = DebugLoc::getFromDILocation(IA);
1214 Scope = LScopes.findInlinedScope(DebugLoc::get(
1241 SmallVector<DebugLocEntry, 4> &DebugLoc = LocList.List; local
1270 if (DebugLoc.empty() || !DebugLoc.back().Merge(Loc))
1271 DebugLoc.push_back(std::move(Loc));
1308 DebugLoc DL = MI->getDebugLoc();
1314 PrologEndLoc = DebugLoc();
[all...]

Completed in 940 milliseconds