diff options
author | Vy Nguyen <vyng@google.com> | 2021-03-12 17:40:37 -0500 |
---|---|---|
committer | Vy Nguyen <vyng@google.com> | 2021-03-21 14:35:46 -0400 |
commit | c53a1322f329e29446c7625da423f58f09ec1a55 (patch) | |
tree | cee17b44e003539abfc727312642c1f1188c1390 /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | 30080b003e75969155b5baa993b6ffdab602a5ff (diff) | |
download | llvm-c53a1322f329e29446c7625da423f58f09ec1a55.zip llvm-c53a1322f329e29446c7625da423f58f09ec1a55.tar.gz llvm-c53a1322f329e29446c7625da423f58f09ec1a55.tar.bz2 |
[lld-macho] Implement -dependency_info (partially - more opcodes needed)
Bug: https://bugs.llvm.org/show_bug.cgi?id=49278
The flag is not well documented, so this implementation is based on observed behaviour.
When specified, `-dependency_info <path>` produced a text file containing information pertaining to the current linkage, such as input files, output file, linker version, etc.
This file's layout is also not documented, but it seems to be a series of null ('\0') terminated strings in the form `<op code><path>`
`<op code>` could be:
`0x00` : linker version
`0x10` : input
`0x11` : files not found(??)
`0x40` : output
`<path>` : is the file path, except for the linker-version case.
(??) This part is a bit unclear. I think it means all the files the linker attempted to look at, but could not find.
Differential Revision: https://reviews.llvm.org/D98559
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
0 files changed, 0 insertions, 0 deletions