Home
last modified time | relevance | path

Searched refs:StartLine (Results 1 – 22 of 22) sorted by relevance

/llvm-project-15.0.7/llvm/test/tools/llvm-symbolizer/
H A Doutput-style-json-code.test15 …":0,"FileName":"","FunctionName":"","Line":0,"StartAddress":"","StartFileName":"","StartLine":0}]}]
20 …foo","Line":5,"StartAddress":"0x400560","StartFileName":"/tmp{{/|\\\\}}discrim.c","StartLine":4}]}]
30 …ame":"main","Line":3,"StartAddress":"0x400540","StartFileName":"/tmp{{/|\\\\}}x.c","StartLine":2}]}
40StartLine":2},{"Column":0,"Discriminator":0,"FileName":"/tmp{{/|\\\\}}x.c","FunctionName":"inc","L…
51StartLine":2},{"Column":0,"Discriminator":0,"FileName":"/tmp{{/|\\\\}}x.c","FunctionName":"inc","L…
61StartLine":2},{"Column":0,"Discriminator":0,"FileName":"/tmp{{/|\\\\}}x.c","FunctionName":"","Line…
H A Dsource.ll25 …void foo() {}\n4 : // Line 4\n","StartAddress":"0x0","StartFileName":"/source.c","StartLine":3}]}]
/llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/
H A DLine.cpp14 LineInfo::LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement) { in LineInfo() argument
15 LineData = StartLine & StartLineMask; in LineInfo()
16 uint32_t LineDelta = EndLine - StartLine; in LineInfo()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/
H A DDIContext.h42 uint32_t StartLine = 0; member
55 StartFileName == RHS.StartFileName && StartLine == RHS.StartLine &&
63 StartLine, Discriminator) <
65 RHS.Column, RHS.StartLine, RHS.Discriminator);
80 OS << "start line " << StartLine << '\n'; in dump()
/llvm-project-15.0.7/compiler-rt/lib/xray/
H A Dxray_powerpc64.cpp34 const intptr_t StartLine = ((intptr_t)Addr) & Mask; in clearCache() local
37 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in clearCache()
41 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in clearCache()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/
H A DLine.h35 LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement);
97 Line(int32_t CodeOffset, uint32_t StartLine, uint32_t EndLine, in Line() argument
99 : CodeOffset(CodeOffset), LineInf(StartLine, EndLine, IsStatement), in Line()
/llvm-project-15.0.7/llvm/unittests/ProfileData/
H A DMemProfTest.cpp68 uint32_t StartLine; member
78 Frame.StartLine = Item.StartLine; in makeInliningInfo()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DNamespaceCommentCheck.cpp94 unsigned StartLine = Sources.getSpellingLineNumber(ND->getBeginLoc()); in check() local
96 if (EndLine - StartLine + 1 <= ShortNamespaceLines) in check()
H A DBracesAroundStatementsCheck.cpp238 unsigned StartLine = SM.getSpellingLineNumber(StartLoc); in checkStmt() local
240 if (EndLine - StartLine < ShortStatementLines) in checkStmt()
/llvm-project-15.0.7/llvm/tools/llvm-cov/
H A DCoverageExporterLcov.cpp59 auto StartLine = F.CountedRegions.front().LineStart; in renderFunctions() local
60 OS << "FN:" << StartLine << ',' << F.Name << '\n'; in renderFunctions()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dsource_location.cpp474 constexpr int StartLine = 42; variable
476 static_assert(__builtin_LINE() == StartLine);
477 static_assert(__builtin_LINE() == StartLine + 1);
478 static_assert(SL::current().line() == StartLine + 2);
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndexDiagnostic.cpp271 unsigned StartLine, StartColumn, EndLine, EndColumn; in clang_formatDiagnostic() local
273 &StartFile, &StartLine, &StartColumn, in clang_formatDiagnostic()
281 Out << "{" << StartLine << ":" << StartColumn << "-" in clang_formatDiagnostic()
/llvm-project-15.0.7/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp152 if (Info.StartLine) { in printVerbose()
154 OS << " Function start line: " << Info.StartLine << '\n'; in printVerbose()
308 {"StartLine", LineInfo.StartLine}, in print()
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DMemory.inc234 const intptr_t StartLine = ((intptr_t) Addr) & Mask;
237 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
241 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1113 std::string &FunctionName, std::string &StartFile, uint32_t &StartLine, in getFunctionNameAndStartLineForAddress() argument
1136 StartLine = DeclLineResult; in getFunctionNameAndStartLineForAddress()
1251 Result.StartFileName, Result.StartLine, Result.StartAddress); in getLineInfoForAddress()
1285 uint32_t StartLine = 0; in getLineInfoForAddressRange() local
1291 StartFileName, StartLine, StartAddress); in getLineInfoForAddressRange()
1299 Result.StartLine = StartLine; in getLineInfoForAddressRange()
1324 Result.StartLine = StartLine; in getLineInfoForAddressRange()
1366 Frame.StartLine = DeclLineResult; in getInliningInfoForAddress()
/llvm-project-15.0.7/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp139 bool matchesRange(SourceRange Range, unsigned StartLine, in matchesRange() argument
141 EXPECT_EQ(StartLine, Range.Start.Line); in matchesRange()
145 return Range.Start.Line == StartLine && Range.End.Line == EndLine && in matchesRange()
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dllvm-symbolizer.rst363 "StartLine": 9
373 "StartLine": 14
389 "StartLine": 5
/llvm-project-15.0.7/clang/lib/AST/
H A DCommentParser.cpp510 const unsigned StartLine = SourceMgr.getPresumedLineNumber( in parseHTMLStartTag() local
517 if (StartLineInvalid || EndLineInvalid || StartLine == EndLine) in parseHTMLStartTag()
/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DRawMemProfReader.cpp428 const Frame F(Guid, DIFrame.Line - DIFrame.StartLine, DIFrame.Column, in symbolizeAndFilterStackFrames()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DScopedPrinterTest.cpp1054 TEST_F(ScopedPrinterTest, StartLine) { in TEST_F() argument
/llvm-project-15.0.7/llvm/tools/llvm-profgen/
H A DProfiledBinary.cpp790 uint32_t LineOffset = (CallerFrame.Line - CallerFrame.StartLine) & 0xffff; in symbolize()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp3143 unsigned StartLine = SM.getExpansionLineNumber(Start); in populateExecutedLinesWithFunctionSignature() local
3147 for (unsigned Line = StartLine; Line <= EndLine; Line++) in populateExecutedLinesWithFunctionSignature()