Add support for DragonFlyBSD target.
[binutils.git] / gold / TODO
blobb85df9751b09ec2fb0149c311385351dfb3ef9a9
1 Things that still need to be done: -*- Text -*-
3  o - Performance
5    All performance could be tuned, but one area that could be looked
6    at especially is performance with flags, particularly
7    --detect-odr-violations and --compress-debug-sections.
9  o - Threads
11    Why is the usertime when we run with threads the same (or almost
12    the same) as when we run without?  Is it because threads spend most
13    of their time waiting on the same resources?  On each other?
14    Something else?
16  o - ODR false positives
18    ODR false positives can happen when we optimize, since code in .h
19    files may be optimized in different ways in different compilation
20    units.  It's possible we could fix this for real by looking at the
21    full debug info and using DW_TAG_inlined_subroutine in a clever way
22    to correct for inlining.  But that would be very expensive, I
23    think.  The easier solution is to recommend people only do
24    ODR-detection with -g0.
26  o - Better testing