Jordan Rupprecht
3abe0b3ab9
[llvm-readelf] Implement note parsing for NT_FILE and unknown descriptors
...
Summary:
This patch implements two note parsers; one for NT_FILE coredumps, e.g.:
```
CORE 0x00000080 NT_FILE (mapped files)
Page size: 4096
Start End Page Offset
0x0000000000001000 0x0000000000002000 0x0000000000003000
/path/to/a.out
0x0000000000004000 0x0000000000005000 0x0000000000006000
/path/to/libc.so
0x0000000000007000 0x0000000000008000 0x0000000000009000
[stack]
```
(A more realistic example can be tested locally by creating a crashing program and running `llvm-readelf -n core`)
And also implements a raw hex dump for unknown descriptor data for unhandled descriptor types.
Reviewers: MaskRay, jhenderson, grimar, alexshap
Reviewed By: MaskRay, grimar
Subscribers: emaste, llvm-commits, labath
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65832
llvm-svn: 368698
2019-08-13 14:38:45 +00:00
..
2019-06-17 09:51:07 +00:00
2019-06-17 09:51:07 +00:00
2019-07-31 14:42:57 +00:00
2018-11-12 18:02:38 +00:00
2019-05-01 05:27:20 +00:00
2019-07-15 22:52:01 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-06-21 11:49:20 +00:00
2019-05-01 05:55:22 +00:00
2019-06-12 20:16:22 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-07-22 08:10:02 +00:00
2019-06-21 14:07:35 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-06-21 14:07:35 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 09:28:24 +00:00
2019-05-01 09:28:24 +00:00
2019-06-05 15:29:50 +00:00
2019-05-01 05:27:20 +00:00
2019-07-05 11:28:49 +00:00
2019-02-27 16:41:59 +00:00
2019-08-09 12:30:08 +00:00
2019-05-29 10:31:46 +00:00
2019-05-24 12:22:53 +00:00
2019-05-24 12:22:53 +00:00
2019-06-05 01:36:48 +00:00
2019-06-19 19:31:07 +00:00
2019-07-22 08:10:02 +00:00
2019-07-24 12:20:42 +00:00
2019-05-01 05:27:20 +00:00
2019-06-24 08:29:54 +00:00
2019-05-01 05:55:22 +00:00
2019-07-19 10:15:03 +00:00
2019-04-03 15:11:19 +00:00
2019-07-16 11:07:30 +00:00
2019-04-03 15:11:19 +00:00
2019-05-01 05:27:20 +00:00
2019-07-24 12:20:42 +00:00
2019-02-21 12:47:10 +00:00
2019-08-12 14:05:37 +00:00
2019-07-08 16:53:39 +00:00
2019-02-27 16:41:59 +00:00
2019-02-27 16:41:59 +00:00
2019-04-03 14:53:42 +00:00
2019-05-24 12:22:53 +00:00
2019-05-01 05:27:20 +00:00
2019-08-09 10:53:12 +00:00
2019-08-09 10:53:12 +00:00
2019-08-09 10:53:12 +00:00
2019-08-09 10:53:12 +00:00
2019-08-09 10:53:12 +00:00
2019-05-01 05:27:20 +00:00
2019-04-03 14:53:42 +00:00
2019-04-27 16:12:14 +00:00
2019-04-03 14:53:42 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-08-08 09:49:05 +00:00
2019-04-03 14:53:42 +00:00
2019-04-03 14:53:42 +00:00
2019-08-08 10:05:00 +00:00
2019-08-09 16:54:51 +00:00
2019-04-03 14:53:42 +00:00
2019-02-27 16:41:59 +00:00
2019-05-30 10:14:41 +00:00
2019-05-30 10:36:52 +00:00
2019-08-08 07:17:35 +00:00
2019-08-09 12:30:08 +00:00
2019-05-01 05:55:22 +00:00
2019-05-01 05:27:20 +00:00
2019-08-13 12:07:41 +00:00
2019-05-01 05:55:22 +00:00
2019-02-20 17:21:38 +00:00
2019-02-20 17:21:38 +00:00
2019-06-03 09:58:41 +00:00
2019-05-01 05:55:22 +00:00
2018-12-11 16:15:03 +00:00
2019-06-18 14:01:03 +00:00
2019-06-18 14:01:03 +00:00
2019-07-22 08:10:02 +00:00
2019-05-01 05:27:20 +00:00
2019-07-15 22:52:01 +00:00
2019-04-15 11:21:47 +00:00
2019-05-01 05:55:22 +00:00
2019-05-03 18:56:25 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-28 11:24:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-28 11:24:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-08-13 14:38:45 +00:00
2019-08-07 22:21:49 +00:00
2019-08-13 14:38:45 +00:00
2019-08-13 14:38:45 +00:00
2019-08-05 16:26:48 +00:00
2019-08-13 14:38:45 +00:00
2019-03-29 16:48:19 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-08-13 14:38:45 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-05-30 12:39:05 +00:00
2019-05-30 12:39:05 +00:00
2019-07-31 14:42:57 +00:00
2019-05-30 12:39:05 +00:00
2019-06-03 09:52:32 +00:00
2019-05-30 12:39:05 +00:00
2019-05-30 12:39:05 +00:00
2019-05-30 12:39:05 +00:00
2019-05-30 12:39:05 +00:00
2019-06-03 09:52:32 +00:00
2019-05-30 12:39:05 +00:00
2019-05-30 12:39:05 +00:00
2019-05-30 12:39:05 +00:00
2019-05-01 05:27:20 +00:00
2017-09-20 18:33:35 +00:00
2019-06-19 19:31:07 +00:00
2019-05-01 05:27:20 +00:00
2019-05-01 05:27:20 +00:00
2019-08-09 12:30:08 +00:00
2019-06-18 14:01:03 +00:00
2019-06-18 14:01:03 +00:00
2019-02-07 22:33:50 +00:00
2019-07-15 22:52:01 +00:00
2019-04-15 11:17:48 +00:00
2019-05-01 05:27:20 +00:00
2019-06-21 14:07:35 +00:00
2019-07-22 08:10:02 +00:00
2019-04-30 19:30:24 +00:00
2019-05-01 09:28:24 +00:00
2019-07-09 18:09:11 +00:00
2019-07-09 18:09:11 +00:00