This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b28b579f00c [NFC] Added tests for D64285 new e75fae52f1f [ADT] Remove MSVC-only "no two-phase name lookup" typename path. new fcfe185dad0 [BPF] Support for compile once and run everywhere new 8d9c5e8ad87 [DAGCombine] LoadedSlice - keep getOffsetFromBase() uint64_ [...]
The 3 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/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 +- lib/Target/BPF/BPF.h | 5 + lib/Target/BPF/BPFAbstrctMemberAccess.cpp | 482 ++++++++++++++++++++ lib/Target/BPF/BPFAsmPrinter.cpp | 20 +- lib/Target/BPF/BPFCORE.h | 24 + lib/Target/BPF/BPFMISimplifyPatchable.cpp | 163 +++++++ lib/Target/BPF/BPFTargetMachine.cpp | 12 + lib/Target/BPF/BTF.h | 63 ++- lib/Target/BPF/BTFDebug.cpp | 489 +++++++++++++++++++-- lib/Target/BPF/BTFDebug.h | 63 ++- lib/Target/BPF/CMakeLists.txt | 2 + test/CodeGen/BPF/BTF/binary-format.ll | 44 +- test/CodeGen/BPF/BTF/extern-global-var.ll | 12 +- test/CodeGen/BPF/BTF/filename.ll | 24 +- test/CodeGen/BPF/BTF/func-func-ptr.ll | 30 +- test/CodeGen/BPF/BTF/func-non-void.ll | 30 +- test/CodeGen/BPF/BTF/func-source.ll | 24 +- test/CodeGen/BPF/BTF/func-typedef.ll | 39 +- test/CodeGen/BPF/BTF/func-unused-arg.ll | 28 +- test/CodeGen/BPF/BTF/func-void.ll | 20 +- test/CodeGen/BPF/BTF/local-var.ll | 20 +- test/CodeGen/BPF/BTF/map-def.ll | 120 +++++ test/CodeGen/BPF/BTF/ptr-prune-type.ll | 84 ++++ test/CodeGen/BPF/BTF/static-var-derived-type.ll | 12 +- test/CodeGen/BPF/BTF/static-var-inited-sec.ll | 12 +- test/CodeGen/BPF/BTF/static-var-inited.ll | 12 +- test/CodeGen/BPF/BTF/static-var-readonly-sec.ll | 12 +- test/CodeGen/BPF/BTF/static-var-readonly.ll | 12 +- test/CodeGen/BPF/BTF/static-var-sec.ll | 12 +- test/CodeGen/BPF/BTF/static-var-zerolen-array.ll | 12 +- test/CodeGen/BPF/BTF/static-var.ll | 12 +- test/CodeGen/BPF/CORE/offset-reloc-basic.ll | 186 ++++++++ test/CodeGen/BPF/CORE/offset-reloc-multilevel.ll | 197 +++++++++ .../BPF/CORE/offset-reloc-struct-anonymous.ll | 213 +++++++++ test/CodeGen/BPF/CORE/offset-reloc-struct-array.ll | 216 +++++++++ test/CodeGen/BPF/CORE/offset-reloc-union.ll | 220 +++++++++ .../patchable-extern-char.ll} | 60 ++- .../patchable-extern-uint.ll} | 67 ++- .../patchable-extern-ulonglong.ll} | 68 ++- test/CodeGen/BPF/reloc-btf-2.ll | 2 +- unittests/ADT/DenseMapTest.cpp | 9 - 41 files changed, 2855 insertions(+), 279 deletions(-) create mode 100644 lib/Target/BPF/BPFAbstrctMemberAccess.cpp create mode 100644 lib/Target/BPF/BPFCORE.h create mode 100644 lib/Target/BPF/BPFMISimplifyPatchable.cpp create mode 100644 test/CodeGen/BPF/BTF/map-def.ll create mode 100644 test/CodeGen/BPF/BTF/ptr-prune-type.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-basic.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-multilevel.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-struct-anonymous.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-struct-array.ll create mode 100644 test/CodeGen/BPF/CORE/offset-reloc-union.ll copy test/CodeGen/BPF/{BTF/extern-global-var.ll => CORE/patchable-extern-char.ll} (57%) copy test/CodeGen/BPF/{BTF/extern-global-var.ll => CORE/patchable-extern-uint.ll} (55%) copy test/CodeGen/BPF/{BTF/extern-global-var.ll => CORE/patchable-extern-ulonglong [...]