/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/ |
D | PDBContext.cpp | 53 auto LineInfo = LineNumbers->getNext(); in getLineInfoForAddress() local 54 assert(LineInfo); in getLineInfoForAddress() 55 auto SourceFile = Session->getSourceFileById(LineInfo->getSourceFileId()); in getLineInfoForAddress() 60 Result.Column = LineInfo->getColumnNumber(); in getLineInfoForAddress() 61 Result.Line = LineInfo->getLineNumber(); in getLineInfoForAddress() 77 while (auto LineInfo = LineNumbers->getNext()) { in getLineInfoForAddressRange() local 79 {LineInfo->getVirtualAddress(), Address.SectionIndex}, Specifier); in getLineInfoForAddressRange() 80 Table.push_back(std::make_pair(LineInfo->getVirtualAddress(), LineEntry)); in getLineInfoForAddressRange()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/ |
D | IntelJITEventListener.cpp | 115 std::vector<LineNumberInfo> LineInfo; in notifyObjectLoaded() local 166 LineInfo.push_back( in notifyObjectLoaded() 169 if (LineInfo.size() == 0) { in notifyObjectLoaded() 180 LineNumberInfo last = LineInfo.back(); in notifyObjectLoaded() 182 LineInfo.push_back(last); in notifyObjectLoaded() 183 for (size_t i = LineInfo.size() - 2; i > 0; --i) in notifyObjectLoaded() 184 LineInfo[i].LineNumber = LineInfo[i - 1].LineNumber; in notifyObjectLoaded() 189 FunctionMessage.line_number_size = LineInfo.size(); in notifyObjectLoaded() 190 FunctionMessage.line_number_table = &*LineInfo.begin(); in notifyObjectLoaded()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | Line.h | 21 class LineInfo { 36 LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement); 37 LineInfo(uint32_t LineData) : LineData(LineData) {} in LineInfo() function 94 LineInfo LineInf; 103 Line(int32_t CodeOffset, LineInfo LineInf, ColumnInfo ColumnInf) in Line() 106 LineInfo getLineInfo() const { return LineInf; } in getLineInfo()
|
D | DebugLinesSubsection.h | 124 void addLineInfo(uint32_t Offset, const LineInfo &Line); 125 void addLineAndColumnInfo(uint32_t Offset, const LineInfo &Line,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/PerfJITEvents/ |
D | PerfJITEventListener.cpp | 471 LLVMPerfJitDebugEntry LineInfo; in NotifyDebug() local 474 LineInfo.Addr = It->first; in NotifyDebug() 478 LineInfo.Addr += 0x40; in NotifyDebug() 479 LineInfo.Lineno = Line.Line; in NotifyDebug() 480 LineInfo.Discrim = Line.Discriminator; in NotifyDebug() 482 Dumpstream->write(reinterpret_cast<const char *>(&LineInfo), in NotifyDebug() 483 sizeof(LineInfo)); in NotifyDebug()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | Line.cpp | 14 LineInfo::LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement) { in LineInfo() function in LineInfo
|
D | DebugLinesSubsection.cpp | 81 void DebugLinesSubsection::addLineInfo(uint32_t Offset, const LineInfo &Line) { in addLineInfo() 90 const LineInfo &Line, in addLineAndColumnInfo()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
D | GCOV.h | 426 if (Line > LineInfo[Filename].LastLine) in addBlockLine() 427 LineInfo[Filename].LastLine = Line; in addBlockLine() 428 LineInfo[Filename].Blocks[Line - 1].push_back(Block); in addBlockLine() 433 if (Line > LineInfo[Filename].LastLine) in addFunctionLine() 434 LineInfo[Filename].LastLine = Line; in addFunctionLine() 435 LineInfo[Filename].Functions[Line - 1].push_back(Function); in addFunctionLine() 459 StringMap<LineData> LineInfo; variable
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
D | BTFDebug.cpp | 698 BTFLineInfo LineInfo; in constructLineInfo() local 700 LineInfo.Label = Label; in constructLineInfo() 701 LineInfo.FileNameOff = addString(FileName); in constructLineInfo() 704 LineInfo.LineOff = addString(FileContent[FileName][Line]); in constructLineInfo() 706 LineInfo.LineOff = 0; in constructLineInfo() 707 LineInfo.LineNum = Line; in constructLineInfo() 708 LineInfo.ColumnNum = Column; in constructLineInfo() 709 LineInfoTable[SecNameOff].push_back(LineInfo); in constructLineInfo() 818 for (const auto &LineInfo : LineSec.second) { in emitBTFExtSection() local 819 Asm->EmitLabelReference(LineInfo.Label, 4); in emitBTFExtSection() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCCodeView.h | 101 struct LineInfo { struct 107 LineInfo InlinedAt; 117 DenseMap<unsigned, LineInfo> InlinedAtMap;
|
/third_party/node/deps/v8/src/diagnostics/ |
D | gdb-jit.cc | 876 class LineInfo : public Malloced { class 911 SharedFunctionInfo shared, LineInfo* lineinfo, in CodeDescription() 921 LineInfo* lineinfo() const { return lineinfo_; } in lineinfo() 981 LineInfo* lineinfo_; 1401 std::vector<LineInfo::PCInfo>* pc_info = desc_->lineinfo()->pc_info(); in WriteBodyInternal() 1405 LineInfo::PCInfo* info = &pc_info->at(i); in WriteBodyInternal() 1475 static bool ComparePCInfo(const LineInfo::PCInfo& a, in ComparePCInfo() 1476 const LineInfo::PCInfo& b) { in ComparePCInfo() 1866 static void PutLineInfo(Address addr, LineInfo* info) { in PutLineInfo() 1870 if (e->value != nullptr) delete static_cast<LineInfo*>(e->value); in PutLineInfo() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/ |
D | SymbolizableObjectFile.cpp | 259 DILineInfo LineInfo = DebugInfoContext->getLineInfoForAddress( in symbolizeCode() local 268 LineInfo.FunctionName = FunctionName; in symbolizeCode() 271 return LineInfo; in symbolizeCode()
|
D | Symbolize.cpp | 54 DILineInfo LineInfo = Info->symbolizeCode(ModuleOffset, Opts.PrintFunctions, in symbolizeCodeCommon() local 57 LineInfo.FunctionName = DemangleName(LineInfo.FunctionName, Info); in symbolizeCodeCommon() 58 return LineInfo; in symbolizeCodeCommon()
|
/third_party/skia/third_party/externals/icu/source/samples/layout/ |
D | paragraph.h | 36 class LineInfo;
|
/third_party/icu/icu4c/source/samples/layout/ |
D | paragraph.h | 36 class LineInfo;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCCodeView.cpp | 109 MCCVFunctionInfo::LineInfo InlinedAt; in recordInlinedCallSiteId() 291 MCCVFunctionInfo::LineInfo &IA = I->second; in getFunctionLineEntries() 373 LineData |= LineInfo::StatementFlag; in emitLineTableForFunction() 505 MCCVFunctionInfo::LineInfo LastSourceLoc, CurSourceLoc; in encodeInlineLineTable()
|
/third_party/typescript/src/compiler/ |
D | sourcemap.ts | 329 export interface LineInfo { interface 335 export function getLineInfo(text: string, lineStarts: readonly number[]): LineInfo { 346 export function tryGetSourceMappingURL(lineInfo: LineInfo) {
|
/third_party/typescript/src/server/ |
D | scriptInfo.ts | 261 getLineInfo(): LineInfo { 661 getLineInfo(): LineInfo {
|
/third_party/typescript/src/services/ |
D | sourcemaps.ts | 144 generatedFileLineInfo: LineInfo,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLDebugSections.cpp | 429 LineInfo(L.LineStart, LE, L.IsStatement), in toCodeViewSubsection() 435 Result->addLineInfo(L.Offset, LineInfo(L.LineStart, LE, L.IsStatement)); in toCodeViewSubsection() 605 LineInfo LI(LN.Flags); in fromCodeViewSubsection()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LineEditor/ |
D | LineEditor.cpp | 144 const LineInfo *LI = ::el_line(EL); in ElCompletionFn()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
D | GCOV.cpp | 721 for (const auto &LI : LineInfo) in print() 738 const LineData &Line = LineInfo[Filename]; in print()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | dbghelp.h | 687 typedef BOOL (CALLBACK *PSYM_ENUMLINES_CALLBACK)(PSRCCODEINFO LineInfo,PVOID UserContext);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.cpp | 506 LineInfo LI(DL.getLine(), DL.getLine(), /*IsStatement=*/true); in maybeRecordLocation()
|