| Age | Commit message (Collapse) | Author |
|
- The register encoding state in the JSON crashlog format changes.
Update the parser accordingly.
- Print the register state when printing the symbolicated thread.
|
|
Update the JSON parser to include the thread name in the Thread object.
rdar://76677320
|
|
Update the crashlog script for changes to the JSON schema.
rdar://75122914
Differential revision: https://reviews.llvm.org/D98219
|
|
|
|
|
|
Compute the real addresses and offsets for the json crashlog test.
|
|
Add a parser for JSON crashlogs. The CrashLogParser now defers to either
the JSONCrashLogParser or the TextCrashLogParser. It first tries to
interpret the input as JSON, and if that fails falling back to the
textual parser.
Differential revision: https://reviews.llvm.org/D91130
|
|
This test requires running under the Python we built against (which is
easy) and setting up the PYTHONPATH (which is not worth it for this
simple test).
|
|
Move crash log parsing out of the CrashLog class and into its own class
and add more tests.
Differential revision: https://reviews.llvm.org/D90664
|