-
Notifications
You must be signed in to change notification settings - Fork 17.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/compile: consider using DWARF 5 #26379
Comments
Strongly in favor of doing this the moment we think we can get away with it. I'm happy to do the work for location lists. |
Un-proposaling this per discussion with @ianlancetaylor. |
For reference, the debug info for the linux_amd64/go1.11.1 version of cmd/compile is 15MB of which 8MB are in debug_loc and debug_ranges, specifically:
Rewriting debug_loc and debug_ranges in the new format specified by DWARF 5 will reduce the size of debug_ranges to 774460 B (31% of DWARF 4 size) and of debug_loc to 2032960 B (34% of DWARF 4 size). Edit: debug_ranges and debug_loc were accidentally swapped in the last sentence. |
Is compression still doing a better job at reducing binary size than DWARF 5, or can D5 also be compressed? I did just mostly finish a DWARF splitter for OSX that recreates the expected file in the expected place, and adds the expected UUID for matching the two files. I suspect I ought to be using a hash of the binary contents excluding debugging information, so that identical files will remain identical after UUIDs are added. |
The compression isn't actually part of the DWARF spec, so it's orthogonal to the DWARF version and can be used with DWARF 5. @aarzilli, thanks for doing that experiment. Can you get the numbers for DWARF 5 if it's also zlib compressed? |
After compression the size is basically the same, 98% (of compressed DWARF4) for debug_ranges and 77% (of compressed DWARF4) for debug_loc. The compression time however is reduced by 40%. |
Is that compression time+space comparing current low-effort (higher speed) versus future low-effort? Sorry to be so picky, it's just that we've made mistakes here before. |
I'm comparing compression using zlib.BestSpeed for both, like the linker. Since measuring how much time it actually took inside the linker is hard I measured how much time it takes to recompress the compressed section. Because I have send the whole section to the compressor and the linker doesn't, I get slightly better compression than the linker. But the difference is small (around 1%) and since I'm doing it for both DWARF 4 and DWARF 5 the result should be valid. |
Parsed a DWARF5 linux kernel module, the below statement of index 0 is not nil. It returns the real file path.
|
FWIW, GCC 11.1 was released on April 27, 2021. From https://gcc.gnu.org/gcc-11/changes.html:
Also, Clang 14 was released on March 25, 2022. From https://releases.llvm.org/14.0.0/tools/clang/docs/ReleaseNotes.html#dwarf-support-in-clang:
|
Hi all, I'm working on a set of patches to switch the Go compiler/linker over to DWARF 5, just FYI. |
Change https://go.dev/cl/633878 mentions this issue: |
Change https://go.dev/cl/633880 mentions this issue: |
Change https://go.dev/cl/635345 mentions this issue: |
Change https://go.dev/cl/635337 mentions this issue: |
Change https://go.dev/cl/633879 mentions this issue: |
Change https://go.dev/cl/633877 mentions this issue: |
Change https://go.dev/cl/634415 mentions this issue: |
Change https://go.dev/cl/635836 mentions this issue: |
Change https://go.dev/cl/636518 mentions this issue: |
For those following along, the patch stack I've been working on is now functional; if you check out the stack at https://go-review.googlesource.com/c/go/+/635836 and then build with GOEXPERIMENT=dwarf5 you'll get a DWARF5 binary. Please feel free to try it out and kick the tires if you like. What works and what doesn't at the moment:
|
Change https://go.dev/cl/639177 mentions this issue: |
Update: still some Delve issues to work through, but things are getting closer; Alessandro has been helping me test this. It looks like this work is also dependent on the fix for [delve issue 3861(https://github.com/go-delve/delve/issues/3861) (e.g. Go CL 628876) going in, so hopefully we can come to some sort of resolution as to what to do with that Go CL. |
Here are compilebench numbers for the changes (tip of master vs master + DWARF5).
|
DWARF 5 has several advantages over previous versions of DWARF. Notably,
It supports position-independent representations, which significantly reduces the number of relocations in object files and hence the size of object files and the load on the linker. In the
go
binary, 49% of the 503,361 total relocations are in the DWARF.It supports much more compact location and range list formats. The location and range list sections are 6% of the 12MiB of the
go
binary, even when zlib compressed.It has an official language code for Go. :)
DWARF 5 is quite new, and I don't think the rest of the ecosystem is ready yet, but I wanted to get the idea floating. It is supported by the GNU and LLVM toolchains and some debuggers. Support was added in GCC 7.1 (May 2017) and GDB 8.0 (June 2017). It appears to be in the latest LLVM, which covers most of the Xcode tools, though I can't find when it was added.
It is currently not supported by LLDB or the macOS linker. We could potentially get around the macOS linker by leaving out the Go DWARF from the objects we pass to the system linker and then merging it in to the final binary (we already do a merge step). This is more feasible with DWARF5 because it's mostly position-independent, so we wouldn't need dsymutil to relocate it for us.
/cc @cherrymui @heschik @dr2chase @randall77 @ianlancetaylor
The text was updated successfully, but these errors were encountered: