Searched refs:getLine (Results 1 - 25 of 81) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DAddDiscriminators.cpp202 Location L = std::make_pair(DIL->getFilename(), DIL->getLine());
215 << DIL->getFilename() << ":" << DIL->getLine() << ":"
220 LLVM_DEBUG(dbgs() << DIL->getFilename() << ":" << DIL->getLine() << ":"
246 std::make_pair(CurrentDIL->getFilename(), CurrentDIL->getLine());
254 << CurrentDIL->getLine() << ":" << CurrentDIL->getColumn()
H A DDebugify.cpp131 auto LocalVar = DIB.createAutoVariable(SP, Name, File, Loc->getLine(),
240 if (DL && DL.getLine() != 0) {
241 MissingLines.reset(DL.getLine() - 1);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DDebugLoc.cpp25 unsigned DebugLoc::getLine() const { function in class:DebugLoc
27 return get()->getLine();
109 Ctx, MD->getLine(), MD->getColumn(), MD->getScope(), Last);
125 OS << ':' << getLine();
H A DLLVMContextImpl.h290 : Line(L->getLine()), Column(L->getColumn()), Scope(L->getRawScope()),
294 return Line == RHS->getLine() && Column == RHS->getColumn() &&
430 Line(N->getLine()), Scope(N->getRawScope()),
438 File == RHS->getRawFile() && Line == RHS->getLine() &&
527 Line(N->getLine()), Scope(N->getRawScope()),
538 File == RHS->getRawFile() && Line == RHS->getLine() &&
643 Line(N->getLine()), Type(N->getRawType()), ScopeLine(N->getScopeLine()),
656 File == RHS->getRawFile() && Line == RHS->getLine() &&
737 : Scope(N->getRawScope()), File(N->getRawFile()), Line(N->getLine()),
742 Line == RHS->getLine()
[all...]
H A DDiagnosticInfo.cpp115 Line = DL->getLine();
150 Line = Loc.getLine();
218 Val = (Loc->getFilename() + ":" + Twine(Loc.getLine()) + ":" +
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleDebugInfoPrinter.cpp87 printFile(O, S->getFilename(), S->getDirectory(), S->getLine());
96 printFile(O, GV->getFilename(), GV->getDirectory(), GV->getLine());
106 printFile(O, T->getFilename(), T->getDirectory(), T->getLine());
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DScriptLexer.h45 StringRef getLine();
H A DScriptLexer.cpp43 StringRef ScriptLexer::getLine() { function in class:lld::elf::ScriptLexer
65 return tok.data() - getLine().data();
82 s += "\n>>> " + getLine().str() + "\n>>> " +
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DSourceLocation.cpp57 OS << PLoc.getFilename() << ':' << PLoc.getLine()
100 OS << PLoc.getFilename() << ':' << PLoc.getLine() << ':'
102 } else if (Previous.isInvalid() || PLoc.getLine() != Previous.getLine()) {
103 OS << "line" << ':' << PLoc.getLine() << ':' << PLoc.getColumn();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86DiscriminateMemOps.cpp50 return std::make_pair(Loc->getFilename(), Loc->getLine());
99 DILocation::get(FDI->getContext(), FDI->getLine(), 0, FDI);
155 << DI->getFilename() << " Line: " << DI->getLine()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DFileIndexRecord.cpp50 OS << llvm::sys::path::filename(PLoc.getFilename()) << ':' << PLoc.getLine()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugLoc.h93 unsigned getLine() const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormattedStream.h111 /// getLine - Return the line number
112 unsigned getLine() { return Position.second; } function in class:llvm::formatted_raw_ostream
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.cpp57 OS << "Definition at line " << Group.getLine() << ", column "
H A DCoverageExporterLcov.cpp69 OS << "DA:" << LCS.getLine() << ',' << LCS.getExecutionCount() << '\n';
H A DSourceCoverageView.cpp226 if (NextESV != EndESV && NextESV->getLine() == LI.line_number() &&
239 for (; NextESV != EndESV && NextESV->getLine() == LI.line_number();
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_monitor.cpp67 *OutLine = SL.getLine();
H A Dubsan_value.h75 unsigned getLine() const { return Line; } function in class:__ubsan::SourceLocation
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DJsonSupport.h100 Out << "\"line\": " << PLoc.getLine()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFMIChecking.cpp169 report_fatal_error("line " + std::to_string(DL.getLine()) +
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp172 return (DIL->getLine() - DIL->getScope()->getSubprogram()->getLine()) &
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp101 output << "block(line:" << Loc.getLine() << ":col:" << Loc.getColumn();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCCodeView.h59 unsigned getLine() const { return Line; } function in class:llvm::MCCVLoc
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DLogDiagnosticPrinter.cpp156 DE.Line = PLoc.getLine();
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DSanitizerMetadata.cpp99 llvm::Type::getInt32Ty(VMContext), PLoc.getLine())),

Completed in 169 milliseconds

1234