This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 6f763e66dd3 [SLP]PR39774: Update references of the replaced external in [...] new 40a88673484 [CodeGen] Prefer static frame index for STATEPOINT liveness args new 9c6b970db8b [BTF] Add BTF DebugInfo
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/BinaryFormat/BTF.def | 33 + include/llvm/BinaryFormat/BTF.h | 203 ++++++ include/llvm/MC/MCObjectFileInfo.h | 14 + lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 9 + lib/CodeGen/AsmPrinter/BTFDebug.cpp | 770 ++++++++++++++++++++++ lib/CodeGen/AsmPrinter/BTFDebug.h | 293 ++++++++ lib/CodeGen/AsmPrinter/BTFDebugStub.cpp | 28 + lib/CodeGen/AsmPrinter/CMakeLists.txt | 12 + lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp | 2 +- lib/CodeGen/AsmPrinter/DebugHandlerBase.h | 2 +- lib/CodeGen/SelectionDAG/StatepointLowering.cpp | 11 +- lib/MC/MCObjectFileInfo.cpp | 3 + test/CodeGen/X86/statepoint-stackmap-format.ll | 87 ++- test/DebugInfo/BTF/array-1d-char.ll | 68 ++ test/DebugInfo/BTF/array-1d-int.ll | 68 ++ test/DebugInfo/BTF/array-2d-int.ll | 68 ++ test/DebugInfo/BTF/array-size-0.ll | 70 ++ test/DebugInfo/BTF/array-typedef.ll | 82 +++ test/DebugInfo/BTF/binary-format.ll | 68 ++ test/DebugInfo/BTF/char.ll | 53 ++ test/DebugInfo/BTF/enum-basic.ll | 62 ++ test/DebugInfo/BTF/func-func-ptr.ll | 128 ++++ test/DebugInfo/BTF/func-non-void.ll | 97 +++ test/DebugInfo/BTF/func-source.ll | 80 +++ test/DebugInfo/BTF/func-typedef.ll | 112 ++++ test/DebugInfo/BTF/func-unused-arg.ll | 93 +++ test/DebugInfo/BTF/func-void.ll | 74 +++ test/DebugInfo/BTF/fwd-no-define.ll | 73 ++ test/DebugInfo/BTF/fwd-with-define.ll | 66 ++ test/DebugInfo/BTF/int.ll | 53 ++ test/{CodeGen/BPF => DebugInfo/BTF}/lit.local.cfg | 0 test/DebugInfo/BTF/longlong.ll | 53 ++ test/DebugInfo/BTF/ptr-const-void.ll | 54 ++ test/DebugInfo/BTF/ptr-func-1.ll | 55 ++ test/DebugInfo/BTF/ptr-func-2.ll | 73 ++ test/DebugInfo/BTF/ptr-func-3.ll | 73 ++ test/DebugInfo/BTF/ptr-int.ll | 58 ++ test/DebugInfo/BTF/ptr-void.ll | 50 ++ test/DebugInfo/BTF/ptr-volatile-const-void.ll | 58 ++ test/DebugInfo/BTF/ptr-volatile-void.ll | 54 ++ test/DebugInfo/BTF/restrict-ptr.ll | 61 ++ test/DebugInfo/BTF/short.ll | 54 ++ test/DebugInfo/BTF/struct-anon.ll | 76 +++ test/DebugInfo/BTF/struct-basic.ll | 81 +++ test/DebugInfo/BTF/struct-bitfield-typedef.ll | 93 +++ test/DebugInfo/BTF/struct-enum.ll | 92 +++ test/DebugInfo/BTF/uchar.ll | 53 ++ test/DebugInfo/BTF/uint.ll | 53 ++ test/DebugInfo/BTF/ulonglong.ll | 53 ++ test/DebugInfo/BTF/union-array-typedef.ll | 103 +++ test/DebugInfo/BTF/ushort.ll | 53 ++ 51 files changed, 4077 insertions(+), 5 deletions(-) create mode 100644 include/llvm/BinaryFormat/BTF.def create mode 100644 include/llvm/BinaryFormat/BTF.h create mode 100644 lib/CodeGen/AsmPrinter/BTFDebug.cpp create mode 100644 lib/CodeGen/AsmPrinter/BTFDebug.h create mode 100644 lib/CodeGen/AsmPrinter/BTFDebugStub.cpp create mode 100644 test/DebugInfo/BTF/array-1d-char.ll create mode 100644 test/DebugInfo/BTF/array-1d-int.ll create mode 100644 test/DebugInfo/BTF/array-2d-int.ll create mode 100644 test/DebugInfo/BTF/array-size-0.ll create mode 100644 test/DebugInfo/BTF/array-typedef.ll create mode 100644 test/DebugInfo/BTF/binary-format.ll create mode 100644 test/DebugInfo/BTF/char.ll create mode 100644 test/DebugInfo/BTF/enum-basic.ll create mode 100644 test/DebugInfo/BTF/func-func-ptr.ll create mode 100644 test/DebugInfo/BTF/func-non-void.ll create mode 100644 test/DebugInfo/BTF/func-source.ll create mode 100644 test/DebugInfo/BTF/func-typedef.ll create mode 100644 test/DebugInfo/BTF/func-unused-arg.ll create mode 100644 test/DebugInfo/BTF/func-void.ll create mode 100644 test/DebugInfo/BTF/fwd-no-define.ll create mode 100644 test/DebugInfo/BTF/fwd-with-define.ll create mode 100644 test/DebugInfo/BTF/int.ll copy test/{CodeGen/BPF => DebugInfo/BTF}/lit.local.cfg (100%) create mode 100644 test/DebugInfo/BTF/longlong.ll create mode 100644 test/DebugInfo/BTF/ptr-const-void.ll create mode 100644 test/DebugInfo/BTF/ptr-func-1.ll create mode 100644 test/DebugInfo/BTF/ptr-func-2.ll create mode 100644 test/DebugInfo/BTF/ptr-func-3.ll create mode 100644 test/DebugInfo/BTF/ptr-int.ll create mode 100644 test/DebugInfo/BTF/ptr-void.ll create mode 100644 test/DebugInfo/BTF/ptr-volatile-const-void.ll create mode 100644 test/DebugInfo/BTF/ptr-volatile-void.ll create mode 100644 test/DebugInfo/BTF/restrict-ptr.ll create mode 100644 test/DebugInfo/BTF/short.ll create mode 100644 test/DebugInfo/BTF/struct-anon.ll create mode 100644 test/DebugInfo/BTF/struct-basic.ll create mode 100644 test/DebugInfo/BTF/struct-bitfield-typedef.ll create mode 100644 test/DebugInfo/BTF/struct-enum.ll create mode 100644 test/DebugInfo/BTF/uchar.ll create mode 100644 test/DebugInfo/BTF/uint.ll create mode 100644 test/DebugInfo/BTF/ulonglong.ll create mode 100644 test/DebugInfo/BTF/union-array-typedef.ll create mode 100644 test/DebugInfo/BTF/ushort.ll