/external/llvm/lib/DebugInfo/PDB/ |
D | PDBContext.cpp | 55 auto LineInfo = LineNumbers->getNext(); in getLineInfoForAddress() local 56 assert(LineInfo); in getLineInfoForAddress() 57 auto SourceFile = Session->getSourceFileById(LineInfo->getSourceFileId()); in getLineInfoForAddress() 62 Result.Column = LineInfo->getColumnNumber(); in getLineInfoForAddress() 63 Result.Line = LineInfo->getLineNumber(); in getLineInfoForAddress() 78 while (auto LineInfo = LineNumbers->getNext()) { in getLineInfoForAddressRange() local 80 getLineInfoForAddress(LineInfo->getVirtualAddress(), Specifier); in getLineInfoForAddressRange() 81 Table.push_back(std::make_pair(LineInfo->getVirtualAddress(), LineEntry)); in getLineInfoForAddressRange()
|
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
D | IntelJITEventListener.cpp | 113 std::vector<LineNumberInfo> LineInfo; in NotifyObjectEmitted() local 152 LineInfo.push_back( in NotifyObjectEmitted() 155 if (LineInfo.size() == 0) { in NotifyObjectEmitted() 166 LineNumberInfo last = LineInfo.back(); in NotifyObjectEmitted() 168 LineInfo.push_back(last); in NotifyObjectEmitted() 169 for (size_t i = LineInfo.size() - 2; i > 0; --i) in NotifyObjectEmitted() 170 LineInfo[i].LineNumber = LineInfo[i - 1].LineNumber; in NotifyObjectEmitted() 175 FunctionMessage.line_number_size = LineInfo.size(); in NotifyObjectEmitted() 176 FunctionMessage.line_number_table = &*LineInfo.begin(); in NotifyObjectEmitted()
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
D | OProfileJITEventListener.cpp | 123 std::vector<debug_line_info> LineInfo; in NotifyFunctionEmitted() local 124 LineInfo.reserve(1 + Details.LineStarts.size()); in NotifyFunctionEmitted() 140 LineInfo.push_back(line_info); in NotifyFunctionEmitted() 146 LineInfo.push_back(LineStartToOProfileFormat( in NotifyFunctionEmitted() 152 LineInfo[0].vma = reinterpret_cast<uintptr_t>(FnStart); in NotifyFunctionEmitted() 155 LineInfo.size(), &*LineInfo.begin()) == -1) { in NotifyFunctionEmitted()
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | Line.h | 22 class LineInfo { 37 LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement); 38 LineInfo(uint32_t LineData) : LineData(LineData) {} in LineInfo() function 95 LineInfo LineInf; 104 Line(int32_t CodeOffset, LineInfo LineInf, ColumnInfo ColumnInf) in Line() 107 LineInfo getLineInfo() const { return LineInf; } in getLineInfo()
|
/external/llvm/tools/sanstats/ |
D | sanstats.cpp | 79 if (Expected<DILineInfo> LineInfo = in ReadModule() local 81 llvm::outs() << LineInfo->FileName << ':' << LineInfo->Line << ' ' in ReadModule() 82 << LineInfo->FunctionName << ' '; in ReadModule() 84 logAllUnhandledErrors(LineInfo.takeError(), llvm::outs(), "<error> "); in ReadModule()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | GCOV.cpp | 238 if (LineInfo.find(Filename) == LineInfo.end()) { in addLineCount() 247 LineInfo[Filename] = L; in addLineCount() 250 LineCounts &L = LineInfo[Filename]; in addLineCount() 256 for (StringMap<LineCounts>::iterator I = LineInfo.begin(), E = LineInfo.end(); in print() 260 LineCounts &L = LineInfo[Filename]; in print()
|
/external/llvm/include/llvm/Support/ |
D | GCOV.h | 399 : Options(Options), LineInfo(), RunCount(0), ProgramCount(0) {} in FileInfo() 402 if (Line > LineInfo[Filename].LastLine) in addBlockLine() 403 LineInfo[Filename].LastLine = Line; in addBlockLine() 404 LineInfo[Filename].Blocks[Line - 1].push_back(Block); in addBlockLine() 408 if (Line > LineInfo[Filename].LastLine) in addFunctionLine() 409 LineInfo[Filename].LastLine = Line; in addFunctionLine() 410 LineInfo[Filename].Functions[Line - 1].push_back(Function); in addFunctionLine() 433 StringMap<LineData> LineInfo; variable
|
/external/llvm/lib/DebugInfo/PDB/Raw/ |
D | ModStream.cpp | 53 if (auto EC = LineReader.readArray(LineInfo, LineReader.bytesRemaining())) in reload() 79 return llvm::make_range(LineInfo.begin(HadError), LineInfo.end()); in lines()
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | Line.cpp | 15 LineInfo::LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement) { in LineInfo() function in LineInfo
|
/external/libedit/src/ |
D | histedit.h | 66 } LineInfo; typedef 177 const LineInfo *el_line(EditLine *); 242 int tok_line(Tokenizer *, const LineInfo *,
|
D | eln.c | 343 const LineInfo * 347 LineInfo *info = &el->el_lgcylinfo; in el_line()
|
D | el.h | 147 LineInfo el_lgcylinfo; /* Legacy LineInfo buffer */
|
D | tokenizer.c | 195 FUN(tok,line)(TYPE(Tokenizer) *tok, const TYPE(LineInfo) *line, in FUN() 447 TYPE(LineInfo) li; in FUN()
|
/external/llvm/lib/DebugInfo/Symbolize/ |
D | SymbolizableObjectFile.cpp | 207 DILineInfo LineInfo; in symbolizeCode() local 209 LineInfo = DebugInfoContext->getLineInfoForAddress( in symbolizeCode() 218 LineInfo.FunctionName = FunctionName; in symbolizeCode() 221 return LineInfo; in symbolizeCode()
|
D | Symbolize.cpp | 72 DILineInfo LineInfo = Info->symbolizeCode(ModuleOffset, Opts.PrintFunctions, in symbolizeCode() local 75 LineInfo.FunctionName = DemangleName(LineInfo.FunctionName, Info); in symbolizeCode() 76 return LineInfo; in symbolizeCode()
|
/external/v8/src/ |
D | gdb-jit.cc | 924 class LineInfo : public Malloced { class 926 LineInfo() : pc_info_(10) {} in LineInfo() function in v8::internal::GDBJITInterface::LineInfo 962 LineInfo* lineinfo) in CodeDescription() 969 LineInfo* lineinfo() const { return lineinfo_; } in lineinfo() 1030 LineInfo* lineinfo_; 1515 List<LineInfo::PCInfo>* pc_info = desc_->lineinfo()->pc_info(); in WriteBodyInternal() 1520 LineInfo::PCInfo* info = &pc_info->at(i); in WriteBodyInternal() 1591 static int ComparePCInfo(const LineInfo::PCInfo* a, in ComparePCInfo() 1592 const LineInfo::PCInfo* b) { in ComparePCInfo() 2025 static void PutLineInfo(Address addr, LineInfo* info) { in PutLineInfo() [all …]
|
/external/google-breakpad/src/common/solaris/ |
D | dump_symbols.cc | 82 struct LineInfo { struct 112 std::vector<struct LineInfo> line_info; 276 struct LineInfo line; in LoadLineInfo() 376 struct LineInfo &line_info = func_info.line_info[k]; in ComputeSizeAndRVA() 382 struct LineInfo &next_line = func_info.line_info[k + 1]; in ComputeSizeAndRVA() 542 const struct LineInfo &line_info = func_info.line_info[i]; in WriteOneFunction()
|
/external/google-breakpad/src/common/dwarf/ |
D | functioninfo.cc | 169 scoped_ptr<LineInfo> lireader(new LineInfo(iter->second.first + data, in ProcessAttributeUnsigned()
|
D | dwarf2reader.h | 81 class LineInfo { 88 LineInfo(const char* buffer_, uint64 buffer_length, 91 virtual ~LineInfo() { in ~LineInfo()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_aaline.c | 44 struct LineInfo struct 266 compute_coveragef(const struct LineInfo *info, in compute_coveragef() 328 typedef void (*plot_func)(struct gl_context *ctx, struct LineInfo *line, 338 struct LineInfo *line, in segment()
|
D | s_aalinetemp.h | 37 NAME(plot)(struct gl_context *ctx, struct LineInfo *line, int ix, int iy) in NAME() 114 struct LineInfo line; in NAME()
|
/external/libedit/examples/ |
D | tc1.c | 98 const LineInfo *lf = el_line(el); in complete() 186 const LineInfo *li; in main()
|
/external/clang/include/clang/Rewrite/Frontend/ |
D | ASTConsumers.h | 37 bool SilenceRewriteMacroWarning, bool LineInfo);
|
/external/llvm/include/llvm/DebugInfo/PDB/Raw/ |
D | ModStream.h | 52 codeview::ModuleSubstreamArray LineInfo; variable
|
/external/icu/icu4c/source/samples/layout/ |
D | paragraph.h | 36 class LineInfo;
|