Part of http://reviews.llvm.org/D7827. Extracts two functions, ParseSymbolizePCOutput and ParseSymbolizeDataOutput that do the string parsing from POSIXSymbolizer.
Details
Details
Diff Detail
Diff Detail
Event Timeline
lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc | ||
---|---|---|
312 | In fact, no, we parse multiple two-line string entries. | |
315 | You can just write it as <function_name> <file_name>:<line_number>[:<column_number>] | |
321 | Why do you need these temp variables, you never actually modify these res->info fields. | |
380 | Wait, this line should remain in SymbolizeData, it has nothing to do with parsing. |
In fact, no, we parse multiple two-line string entries.