Fangrui Song
a954bb18b1
[ELF] Add --why-extract= to query why archive members/lazy object files are extracted
...
Similar to D69607 but for archive member extraction unrelated to GC. This patch adds --why-extract=.
Prior art:
GNU ld -M prints
```
Archive member included to satisfy reference by file (symbol)
a.a(a.o) main.o (a)
b.a(b.o) (b())
```
-M is mainly for input section/symbol assignment <-> output section mapping
(often huge output) and the information may appear ad-hoc.
Apple ld64
```
__Z1bv forced load of b.a(b.o)
_a forced load of a.a(a.o)
```
It doesn't say the reference file.
Arm's proprietary linker
```
Selecting member vsnprintf.o(c_wfu.l) to define vsnprintf.
...
Loading member vsnprintf.o from c_wfu.l.
definition: vsnprintf
reference : _printf_a
```
---
--why-extract= gives the user the full data (which is much shorter than GNU ld
-Map). It is easy to track a chain of references to one archive member with a
one-liner, e.g.
```
% ld.lld main.o a_b.a b_c.a c.a -o /dev/null --why-extract=- | tee stdout
reference extracted symbol
main.o a_b.a(a_b.o) a
a_b.a(a_b.o) b_c.a(b_c.o) b()
b_c.a(b_c.o) c.a(c.o) c()
% ruby -ane 'BEGIN{p={}}; p[$F[1]]=[$F[0],$F[2]] if $.>1; END{x="c.a(c.o)"; while y=p[x]; puts "#{y[0]} extracts #{x} to resolve #{y[1]}"; x=y[0] end}' stdout
b_c.a(b_c.o) extracts c.a(c.o) to resolve c()
a_b.a(a_b.o) extracts b_c.a(b_c.o) to resolve b()
main.o extracts a_b.a(a_b.o) to resolve a
```
Archive member extraction happens before --gc-sections, so this may not be a live path
under --gc-sections, but I think it is a good approximation in practice.
* Specifying a file avoids output interleaving with --verbose.
* Required `=` prevents accidental overwrite of an input if the user forgets `=`. (Most of compiler drivers' long options accept `=` but not ` `)
Differential Revision: https://reviews.llvm.org/D109572
2021-09-20 09:52:30 -07:00
..
2021-08-05 10:32:14 -07:00
2021-07-09 10:41:40 +01:00
2021-08-16 19:23:11 -07:00
2021-09-07 20:46:37 -07:00
2021-02-08 08:55:29 -08:00
2021-02-08 08:55:29 -08:00
2020-12-16 09:20:55 -08:00
2020-12-16 09:20:55 -08:00
2020-12-16 09:20:55 -08:00
2020-09-21 12:09:17 -07:00
2021-07-28 12:55:09 -07:00
2020-12-16 09:20:55 -08:00
2020-09-21 12:09:17 -07:00
2020-12-16 09:20:55 -08:00
2021-02-08 08:55:29 -08:00
2020-12-16 09:20:55 -08:00
2020-12-16 09:20:55 -08:00
2020-12-16 09:20:55 -08:00
2020-12-16 09:20:55 -08:00
2020-12-16 09:20:55 -08:00
2020-12-16 09:20:55 -08:00
2020-12-16 09:20:55 -08:00
2021-02-08 08:55:29 -08:00
2021-02-13 10:32:27 -08:00
2021-01-26 12:01:38 +00:00
2020-12-16 09:20:55 -08:00
2020-12-16 09:20:55 -08:00
2021-02-13 10:32:27 -08:00
2020-12-16 09:20:55 -08:00
2021-02-08 13:44:30 -08:00
2021-02-08 08:55:29 -08:00
2021-02-08 08:55:29 -08:00
2021-08-31 13:09:55 -07:00
2020-12-16 09:20:55 -08:00
2020-09-21 12:09:17 -07:00
2020-09-21 12:09:17 -07:00
2020-12-16 09:20:55 -08:00
2021-02-12 21:00:42 -08:00
2020-12-21 08:47:04 -08:00
2021-07-09 10:41:41 +01:00
2020-12-16 09:20:55 -08:00
2020-12-16 09:20:55 -08:00
2020-12-16 09:20:55 -08:00
2021-02-07 15:47:10 -08:00
2021-05-11 12:48:29 +07:00
2020-10-14 13:04:27 -04:00
2021-03-24 11:54:05 -04:00
2020-10-14 13:04:27 -04:00
2020-10-14 13:04:27 -04:00
2020-10-14 13:04:27 -04:00
2021-07-13 20:41:11 +01:00
2021-02-13 10:32:27 -08:00
2021-03-24 13:41:10 -04:00
2021-01-29 07:16:30 -05:00
2020-12-14 12:03:00 +03:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2020-10-22 09:48:19 -07:00
2020-12-14 12:03:00 +03:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2020-08-10 18:08:07 +01:00
2021-07-28 12:47:12 -07:00
2021-06-30 14:07:35 +01:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2021-07-28 12:47:12 -07:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2020-12-14 12:03:00 +03:00
2021-05-07 12:13:36 +02:00
2020-08-19 22:49:04 -07:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2021-02-13 10:32:27 -08:00
2020-12-14 12:03:00 +03:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:47:12 -07:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2021-06-30 16:35:28 +07:00
2021-07-28 12:47:12 -07:00
2021-06-30 16:35:28 +07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:55:09 -07:00
2021-07-28 12:47:12 -07:00
2021-06-30 16:35:28 +07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:47:12 -07:00
2021-06-30 16:35:28 +07:00
2021-07-28 12:55:09 -07:00
2021-07-28 12:47:12 -07:00
2021-06-30 16:35:28 +07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:47:12 -07:00
2021-06-30 16:35:28 +07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:55:09 -07:00
2021-07-28 12:55:09 -07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:55:09 -07:00
2021-07-28 12:47:12 -07:00
2021-06-30 16:35:28 +07:00
2021-07-28 12:55:09 -07:00
2021-07-28 12:55:09 -07:00
2021-07-28 12:47:12 -07:00
2021-07-28 12:55:09 -07:00
2020-12-14 12:03:00 +03:00
2020-12-21 08:47:04 -08:00
2021-06-30 16:35:28 +07:00
2021-07-16 10:02:47 -07:00
2021-07-16 10:02:47 -07:00
2021-02-13 10:32:27 -08:00
2021-04-16 11:12:29 +02:00
2020-07-12 18:18:54 +02:00
2020-07-31 11:50:55 -07:00
2020-07-31 11:50:55 -07:00
2020-07-31 11:50:55 -07:00
2021-09-20 09:35:12 -07:00
2021-09-20 09:35:12 -07:00
2021-01-29 07:16:30 -05:00
2021-07-29 14:46:53 -07:00
2021-02-07 15:47:10 -08:00
2021-02-13 10:32:27 -08:00
2021-02-13 10:32:27 -08:00
2021-07-13 13:56:30 -07:00
2021-02-13 10:32:27 -08:00
2021-02-12 21:00:42 -08:00
2021-05-22 17:48:45 -07:00
2021-05-22 17:48:45 -07:00
2021-05-22 17:48:45 -07:00
2021-06-08 09:22:30 -07:00
2021-05-22 17:48:45 -07:00
2021-07-14 10:18:30 -07:00
2021-02-12 21:00:42 -08:00
2021-02-12 21:00:42 -08:00
2021-08-07 13:29:59 +03:00
2021-08-07 13:29:59 +03:00
2021-02-12 21:00:42 -08:00
2021-02-12 21:00:42 -08:00
2021-02-13 10:32:27 -08:00
2021-08-05 10:32:14 -07:00
2021-02-13 10:32:27 -08:00
2020-12-12 16:50:25 -08:00
2021-06-20 14:28:56 -07:00
2020-08-06 15:30:08 -07:00
2020-08-06 15:30:08 -07:00
2020-08-06 15:30:08 -07:00
2020-08-06 15:30:08 -07:00
2020-08-06 15:30:08 -07:00
2020-08-06 15:30:08 -07:00
2021-02-12 21:00:42 -08:00
2020-08-03 16:59:13 -07:00
2021-02-07 15:47:10 -08:00
2020-07-23 08:16:01 -07:00
2021-08-27 14:17:32 -07:00
2020-12-14 12:03:00 +03:00
2021-07-16 10:02:47 -07:00
2021-02-12 21:00:42 -08:00
2021-02-13 10:32:27 -08:00
2020-10-22 09:48:19 -07:00
2021-02-12 21:00:42 -08:00
2021-01-05 19:51:11 -08:00
2021-04-15 15:06:20 +04:00
2020-07-02 15:51:33 +01:00
2020-07-02 15:51:33 +01:00
2020-08-13 08:14:45 -07:00
2021-04-29 08:51:09 -07:00
2020-08-07 22:08:44 -07:00
2021-02-12 21:00:42 -08:00
2021-02-07 15:47:10 -08:00
2021-01-30 00:51:36 -08:00
2021-02-09 00:43:10 -08:00
2020-12-14 09:38:12 -08:00
2021-01-02 12:18:05 -06:00
2021-09-20 09:35:12 -07:00
2020-11-09 13:28:48 +01:00
2020-11-03 11:01:29 +01:00
2021-01-22 19:07:02 -08:00
2021-08-03 09:01:03 -07:00
2021-06-20 14:20:14 -07:00
2021-07-27 16:34:32 -07:00
2020-10-21 10:11:26 -07:00
2021-07-22 17:04:54 -07:00
2021-02-05 21:35:27 -08:00
2021-04-16 12:18:46 -07:00
2021-03-09 09:59:47 -08:00
2021-02-12 21:00:42 -08:00
2021-04-16 12:18:46 -07:00
2020-11-12 09:59:43 -08:00
2020-07-03 09:50:30 -07:00
2020-08-27 12:28:51 +01:00
2020-08-13 09:11:01 -07:00
2020-10-20 09:35:32 -07:00
2020-07-09 19:15:31 +07:00
2021-07-16 10:02:47 -07:00
2021-02-12 21:00:42 -08:00
2021-02-12 21:00:42 -08:00
2021-02-12 21:00:42 -08:00
2021-02-12 21:00:42 -08:00
2021-02-13 10:32:27 -08:00
2021-02-13 10:32:27 -08:00
2021-02-13 10:32:27 -08:00
2021-07-15 11:31:11 -07:00
2021-02-13 10:32:27 -08:00
2021-02-13 10:32:27 -08:00
2020-12-14 12:03:00 +03:00
2021-03-18 10:18:19 -07:00
2020-08-25 08:05:39 -07:00
2021-07-09 10:41:40 +01:00
2021-09-01 13:15:18 -07:00
2020-12-14 12:03:00 +03:00
2020-12-14 12:03:00 +03:00
2020-12-14 12:03:00 +03:00
2020-12-21 08:47:04 -08:00
2020-12-14 12:03:00 +03:00
2020-12-14 12:03:00 +03:00
2020-12-14 12:03:00 +03:00
2020-12-14 12:03:00 +03:00
2020-12-21 08:47:04 -08:00
2020-12-14 12:03:00 +03:00
2021-07-09 10:41:40 +01:00
2020-08-07 22:08:44 -07:00
2020-10-15 12:43:14 +01:00
2021-02-05 09:37:37 -08:00
2021-02-13 10:32:27 -08:00
2020-07-14 16:35:17 +07:00
2021-02-13 10:32:27 -08:00
2021-02-08 10:34:57 -08:00
2021-06-20 14:28:56 -07:00
2021-07-16 10:02:47 -07:00
2020-07-03 13:08:56 +01:00
2020-10-28 08:56:42 -07:00
2020-08-17 11:29:05 -07:00
2020-11-03 11:01:29 +01:00
2021-02-07 15:47:10 -08:00
2021-02-13 10:32:27 -08:00
2021-08-10 10:24:01 +01:00
2021-02-28 16:53:41 -08:00
2020-08-27 10:38:42 +01:00
2020-08-27 10:38:42 +01:00
2020-12-14 12:03:00 +03:00
2020-12-14 12:03:00 +03:00
2021-02-07 15:47:10 -08:00
2020-12-14 12:03:00 +03:00
2021-02-13 10:32:27 -08:00
2021-02-07 15:47:10 -08:00
2021-02-07 15:47:10 -08:00
2020-12-14 12:03:00 +03:00
2020-07-20 12:17:49 +03:00
2021-02-17 23:17:20 -08:00
2021-02-13 10:32:27 -08:00
2020-12-14 12:03:00 +03:00
2021-04-27 19:04:50 +01:00
2021-02-17 23:17:20 -08:00
2021-02-17 23:17:20 -08:00
2021-02-17 23:17:20 -08:00
2021-04-27 19:04:50 +01:00
2021-06-27 12:26:11 +02:00
2020-08-05 09:10:01 -07:00
2020-08-05 09:10:01 -07:00
2021-02-13 10:32:27 -08:00
2020-12-14 12:03:00 +03:00
2020-12-14 12:03:00 +03:00
2020-12-14 12:03:00 +03:00
2021-02-13 10:32:27 -08:00
2021-07-31 18:57:19 -07:00
2021-02-13 10:32:27 -08:00
2021-01-02 12:18:05 -06:00
2021-01-17 00:02:13 -08:00
2021-01-02 12:18:05 -06:00
2021-04-30 17:19:45 -07:00
2021-04-30 17:19:45 -07:00
2021-04-30 17:19:45 -07:00
2021-07-09 10:41:40 +01:00
2020-08-17 09:09:36 -05:00
2021-03-04 13:27:46 -05:00
2021-04-05 09:13:20 -05:00
2020-08-17 09:09:36 -05:00
2021-02-12 21:00:42 -08:00
2021-02-12 21:00:42 -08:00
2020-07-09 12:39:24 -05:00
2020-08-17 09:36:09 -05:00
2020-08-17 09:09:36 -05:00
2021-04-05 09:13:20 -05:00
2020-08-17 09:09:36 -05:00
2021-02-13 10:32:27 -08:00
2020-12-21 08:47:04 -08:00
2020-08-17 09:09:36 -05:00
2021-03-04 13:27:46 -05:00
2021-07-09 10:41:40 +01:00
2021-03-04 13:27:46 -05:00
2021-03-04 13:27:46 -05:00
2021-03-04 13:27:46 -05:00
2021-02-07 15:47:10 -08:00
2020-09-22 07:37:54 -05:00
2021-03-04 13:27:46 -05:00
2021-05-06 12:00:04 -05:00
2020-09-22 07:37:54 -05:00
2020-08-28 10:40:48 -05:00
2021-03-04 13:27:46 -05:00
2020-08-17 09:09:36 -05:00
2021-07-16 10:02:47 -07:00
2021-01-19 11:42:53 -08:00
2021-01-19 11:42:51 -08:00
2021-01-19 11:42:53 -08:00
2021-04-05 09:13:20 -05:00
2020-07-29 13:01:31 -07:00
2021-01-19 11:42:51 -08:00
2021-04-05 09:13:20 -05:00
2021-04-05 09:13:20 -05:00
2021-03-22 13:15:44 -05:00
2021-04-05 09:13:20 -05:00
2021-04-05 09:13:20 -05:00
2021-04-05 09:13:20 -05:00
2021-02-07 15:47:10 -08:00
2021-02-07 15:47:10 -08:00
2021-07-16 12:03:07 -07:00
2021-03-04 13:27:46 -05:00
2021-03-04 13:27:46 -05:00
2020-08-17 09:09:36 -05:00
2020-08-17 09:09:36 -05:00
2021-02-13 10:32:27 -08:00
2020-12-14 12:03:00 +03:00
2021-07-09 10:41:40 +01:00
2021-05-22 17:48:45 -07:00
2021-02-07 15:47:10 -08:00
2021-04-16 12:18:46 -07:00
2021-07-16 10:02:47 -07:00
2021-02-13 10:32:27 -08:00
2020-12-14 12:03:00 +03:00
2021-02-13 10:32:27 -08:00
2020-12-14 12:03:00 +03:00
2020-12-14 12:03:00 +03:00
2020-12-14 12:03:00 +03:00
2021-01-29 07:16:30 -05:00
2021-02-11 13:29:41 -08:00
2021-02-13 10:32:27 -08:00
2021-02-13 10:32:27 -08:00
2020-09-05 18:36:23 +01:00
2020-12-04 10:34:12 -08:00
2021-07-09 10:41:40 +01:00
2020-12-04 10:34:12 -08:00
2021-04-30 17:19:45 -07:00
2021-04-30 17:19:45 -07:00
2020-12-21 08:47:04 -08:00
2021-06-10 13:25:16 -07:00
2020-11-02 08:37:15 -08:00
2021-07-27 23:29:02 +01:00
2021-07-27 23:29:02 +01:00
2020-07-07 09:48:13 -07:00
2021-05-22 17:48:45 -07:00
2021-02-13 10:32:27 -08:00
2021-02-13 10:32:27 -08:00
2021-02-13 10:32:27 -08:00
2021-01-29 07:16:30 -05:00
2021-02-13 10:32:27 -08:00
2021-08-04 09:06:05 -07:00
2021-06-28 14:25:21 +07:00
2020-12-09 12:14:00 -08:00
2020-09-24 15:02:48 -07:00
2020-08-17 10:00:31 -07:00
2021-07-29 15:14:00 +01:00
2021-01-25 09:58:56 +00:00
2020-12-21 08:47:04 -08:00
2021-05-22 17:48:45 -07:00
2021-02-13 10:32:27 -08:00
2020-11-24 08:51:58 -05:00
2020-11-17 12:20:57 -08:00
2021-08-04 23:52:56 -07:00
2021-07-31 18:57:19 -07:00
2021-02-13 10:32:27 -08:00
2021-02-13 10:32:27 -08:00
2021-08-04 23:52:56 -07:00
2021-02-13 10:32:27 -08:00
2021-08-04 23:52:56 -07:00
2021-08-04 23:52:56 -07:00
2021-07-31 18:57:19 -07:00
2021-04-20 11:23:10 -07:00
2021-02-13 10:32:27 -08:00
2021-08-04 09:06:05 -07:00
2021-02-13 10:32:27 -08:00
2021-06-20 14:20:14 -07:00
2021-07-16 10:02:47 -07:00
2020-10-08 08:31:34 -07:00
2021-06-30 09:43:28 -07:00
2021-09-20 09:52:30 -07:00
2021-01-22 09:20:29 -08:00
2021-04-17 00:29:51 -07:00
2021-06-28 14:25:21 +07:00
2020-07-29 14:10:38 +01:00
2021-01-22 09:20:29 -08:00
2020-10-22 09:48:19 -07:00
2020-12-30 09:16:26 -08:00
2021-06-28 14:25:21 +07:00
2021-06-28 14:25:21 +07:00
2021-02-13 10:32:27 -08:00
2021-07-09 10:41:40 +01:00
2021-06-28 14:25:21 +07:00
2020-11-07 20:19:21 -08:00
2020-08-11 08:06:36 -07:00
2021-02-13 10:32:27 -08:00
2020-12-14 12:03:00 +03:00
2021-06-28 14:25:21 +07:00