reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/DebugLoc.h
   93     unsigned getLine() const;

References

lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
  506   LineInfo LI(DL.getLine(), DL.getLine(), /*IsStatement=*/true);
  506   LineInfo LI(DL.getLine(), DL.getLine(), /*IsStatement=*/true);
  507   if (LI.getStartLine() != DL.getLine() || LI.isAlwaysStepInto() ||
  546   OS.EmitCVLocDirective(FuncId, FileId, DL.getLine(), DL.getCol(),
 2880   return DL && DL.getLine() != 0;
lib/CodeGen/AsmPrinter/DwarfDebug.cpp
 1663     if (LastAsmLine == 0 && DL.getLine() != 0) {
 1666       recordSourceLine(DL.getLine(), DL.getCol(), Scope, /*Flags=*/0);
 1705   if (DL.getLine() == 0 && LastAsmLine == 0)
 1714   unsigned OldLine = PrevInstLoc ? PrevInstLoc.getLine() : LastAsmLine;
 1715   if (DL.getLine() && DL.getLine() != OldLine)
 1715   if (DL.getLine() && DL.getLine() != OldLine)
 1719   recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags);
 1722   if (DL.getLine())
lib/CodeGen/GlobalISel/IRTranslator.cpp
  144             MI.getDebugLoc().getLine() == 0) &&
lib/CodeGen/LiveDebugValues.cpp
 1337       return DL.getLine() != 0;
lib/CodeGen/LiveDebugVariables.cpp
  489   CommentOS << ':' << DL.getLine();
lib/IR/DebugInfo.cpp
  645           return DebugLoc::get(DL.getLine(), DL.getCol(), Scope, InlinedAt);
lib/IR/DebugLoc.cpp
  125   OS << ':' << getLine();
lib/IR/DiagnosticInfo.cpp
  218     Val = (Loc->getFilename() + ":" + Twine(Loc.getLine()) + ":" +
lib/Target/BPF/BPFISelDAGToDAG.cpp
  196       errs() << "Error at line " << DL.getLine() << ": ";
lib/Target/BPF/BPFMIChecking.cpp
  169           report_fatal_error("line " + std::to_string(DL.getLine()) +
lib/Target/BPF/BTFDebug.cpp
 1048   constructLineInfo(SP, LineSym, DL.getLine(), DL.getCol());
lib/Transforms/IPO/SampleProfile.cpp
  704     LLVM_DEBUG(dbgs() << "    " << DLoc.getLine() << "."
 1464                       << ((BranchLoc) ? Twine(BranchLoc.getLine())
lib/Transforms/Instrumentation/GCOVProfiling.cpp
  606       if (Loc.getLine() == 0) continue;
  739           if (Loc.getLine() == 0 || Loc.isImplicitCode())
  742           if (Line == Loc.getLine()) continue;
  743           Line = Loc.getLine();
  748           Lines.addLine(Loc.getLine());
lib/Transforms/Utils/InlineFunction.cpp
 1354   return DebugLoc::get(OrigDL.getLine(), OrigDL.getCol(), OrigDL.getScope(),
tools/llvm-dis/llvm-dis.cpp
   73   OS << DL.getLine() << ":" << DL.getCol();
tools/opt/Debugify.cpp
  247       if (DL && DL.getLine() != 0) {
  248         MissingLines.reset(DL.getLine() - 1);
tools/polly/lib/Analysis/ScopDetectionDiagnostic.cpp
  101   return LHS.getLine() < RHS.getLine() ||
  101   return LHS.getLine() < RHS.getLine() ||
  102          (LHS.getLine() == RHS.getLine() && LHS.getCol() < RHS.getCol());
  102          (LHS.getLine() == RHS.getLine() && LHS.getCol() < RHS.getCol());
tools/polly/lib/Support/ScopLocation.cpp
   37       unsigned NewLine = DL.getLine();
unittests/IR/IRBuilderTest.cpp
  758   auto NewDL = DebugLoc::get(DL.getLine(), DL.getCol(), DL.getScope(), IA);
unittests/Transforms/Utils/CloningTest.cpp
  584       EXPECT_EQ(OldDL.getLine(), NewDL.getLine());
  584       EXPECT_EQ(OldDL.getLine(), NewDL.getLine());