This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 97de56dd446 [Object] Deduplicate long archive member names new 725ddc363a1 [gn build] Merge r349605 new 95dad60d32c [BPF] Generate BTF DebugInfo under BPF target
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: lib/Target/BPF/BPFAsmPrinter.cpp | 14 + lib/Target/BPF/BTF.def | 33 + lib/Target/BPF/BTF.h | 209 ++++++ lib/Target/BPF/BTFDebug.cpp | 759 +++++++++++++++++++++ lib/Target/BPF/BTFDebug.h | 285 ++++++++ lib/Target/BPF/CMakeLists.txt | 1 + test/CodeGen/BPF/BTF/array-1d-char.ll | 68 ++ test/CodeGen/BPF/BTF/array-1d-int.ll | 68 ++ test/CodeGen/BPF/BTF/array-2d-int.ll | 68 ++ test/CodeGen/BPF/BTF/array-size-0.ll | 70 ++ test/CodeGen/BPF/BTF/array-typedef.ll | 82 +++ test/CodeGen/BPF/BTF/binary-format.ll | 68 ++ test/CodeGen/BPF/BTF/char.ll | 53 ++ test/CodeGen/BPF/BTF/enum-basic.ll | 62 ++ test/CodeGen/BPF/BTF/func-func-ptr.ll | 128 ++++ test/CodeGen/BPF/BTF/func-non-void.ll | 97 +++ test/CodeGen/BPF/BTF/func-source.ll | 80 +++ test/CodeGen/BPF/BTF/func-typedef.ll | 112 +++ test/CodeGen/BPF/BTF/func-unused-arg.ll | 93 +++ test/CodeGen/BPF/BTF/func-void.ll | 74 ++ test/CodeGen/BPF/BTF/fwd-no-define.ll | 73 ++ test/CodeGen/BPF/BTF/fwd-with-define.ll | 66 ++ test/CodeGen/BPF/BTF/int.ll | 53 ++ test/CodeGen/BPF/BTF/longlong.ll | 53 ++ test/CodeGen/BPF/BTF/ptr-const-void.ll | 54 ++ test/CodeGen/BPF/BTF/ptr-func-1.ll | 55 ++ test/CodeGen/BPF/BTF/ptr-func-2.ll | 73 ++ test/CodeGen/BPF/BTF/ptr-func-3.ll | 73 ++ test/CodeGen/BPF/BTF/ptr-int.ll | 58 ++ test/CodeGen/BPF/BTF/ptr-void.ll | 50 ++ test/CodeGen/BPF/BTF/ptr-volatile-const-void.ll | 58 ++ test/CodeGen/BPF/BTF/ptr-volatile-void.ll | 54 ++ test/CodeGen/BPF/BTF/restrict-ptr.ll | 61 ++ test/CodeGen/BPF/BTF/short.ll | 54 ++ test/CodeGen/BPF/BTF/struct-anon.ll | 76 +++ test/CodeGen/BPF/BTF/struct-basic.ll | 81 +++ test/CodeGen/BPF/BTF/struct-bitfield-typedef.ll | 99 +++ test/CodeGen/BPF/BTF/struct-enum.ll | 86 +++ test/CodeGen/BPF/BTF/uchar.ll | 53 ++ test/CodeGen/BPF/BTF/uint.ll | 53 ++ test/CodeGen/BPF/BTF/ulonglong.ll | 53 ++ test/CodeGen/BPF/BTF/union-array-typedef.ll | 103 +++ test/CodeGen/BPF/BTF/ushort.ll | 53 ++ .../gn/secondary/llvm/tools/llvm-objcopy/BUILD.gn | 3 + 44 files changed, 3919 insertions(+) create mode 100644 lib/Target/BPF/BTF.def create mode 100644 lib/Target/BPF/BTF.h create mode 100644 lib/Target/BPF/BTFDebug.cpp create mode 100644 lib/Target/BPF/BTFDebug.h create mode 100644 test/CodeGen/BPF/BTF/array-1d-char.ll create mode 100644 test/CodeGen/BPF/BTF/array-1d-int.ll create mode 100644 test/CodeGen/BPF/BTF/array-2d-int.ll create mode 100644 test/CodeGen/BPF/BTF/array-size-0.ll create mode 100644 test/CodeGen/BPF/BTF/array-typedef.ll create mode 100644 test/CodeGen/BPF/BTF/binary-format.ll create mode 100644 test/CodeGen/BPF/BTF/char.ll create mode 100644 test/CodeGen/BPF/BTF/enum-basic.ll create mode 100644 test/CodeGen/BPF/BTF/func-func-ptr.ll create mode 100644 test/CodeGen/BPF/BTF/func-non-void.ll create mode 100644 test/CodeGen/BPF/BTF/func-source.ll create mode 100644 test/CodeGen/BPF/BTF/func-typedef.ll create mode 100644 test/CodeGen/BPF/BTF/func-unused-arg.ll create mode 100644 test/CodeGen/BPF/BTF/func-void.ll create mode 100644 test/CodeGen/BPF/BTF/fwd-no-define.ll create mode 100644 test/CodeGen/BPF/BTF/fwd-with-define.ll create mode 100644 test/CodeGen/BPF/BTF/int.ll create mode 100644 test/CodeGen/BPF/BTF/longlong.ll create mode 100644 test/CodeGen/BPF/BTF/ptr-const-void.ll create mode 100644 test/CodeGen/BPF/BTF/ptr-func-1.ll create mode 100644 test/CodeGen/BPF/BTF/ptr-func-2.ll create mode 100644 test/CodeGen/BPF/BTF/ptr-func-3.ll create mode 100644 test/CodeGen/BPF/BTF/ptr-int.ll create mode 100644 test/CodeGen/BPF/BTF/ptr-void.ll create mode 100644 test/CodeGen/BPF/BTF/ptr-volatile-const-void.ll create mode 100644 test/CodeGen/BPF/BTF/ptr-volatile-void.ll create mode 100644 test/CodeGen/BPF/BTF/restrict-ptr.ll create mode 100644 test/CodeGen/BPF/BTF/short.ll create mode 100644 test/CodeGen/BPF/BTF/struct-anon.ll create mode 100644 test/CodeGen/BPF/BTF/struct-basic.ll create mode 100644 test/CodeGen/BPF/BTF/struct-bitfield-typedef.ll create mode 100644 test/CodeGen/BPF/BTF/struct-enum.ll create mode 100644 test/CodeGen/BPF/BTF/uchar.ll create mode 100644 test/CodeGen/BPF/BTF/uint.ll create mode 100644 test/CodeGen/BPF/BTF/ulonglong.ll create mode 100644 test/CodeGen/BPF/BTF/union-array-typedef.ll create mode 100644 test/CodeGen/BPF/BTF/ushort.ll