This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 9fedc3c010f Add operand ranges to op1_op2_relation API. new e0a81559c19 bpf: Implementation of BPF CO-RE builtins new c2a447d8404 bpf: CO-RE builtins support tests.
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: gcc/config.gcc | 4 +- gcc/config/bpf/bpf-passes.def | 20 - gcc/config/bpf/bpf-protos.h | 4 +- gcc/config/bpf/bpf.cc | 806 +---------- gcc/config/bpf/bpf.md | 17 + gcc/config/bpf/core-builtins.cc | 1394 ++++++++++++++++++++ gcc/config/bpf/core-builtins.h | 35 + gcc/config/bpf/coreout.cc | 50 +- gcc/config/bpf/coreout.h | 13 +- gcc/config/bpf/t-bpf | 6 +- gcc/doc/extend.texi | 51 + .../gcc.target/bpf/core-builtin-enumvalue-errors.c | 22 + .../gcc.target/bpf/core-builtin-enumvalue-opt.c | 35 + .../gcc.target/bpf/core-builtin-enumvalue.c | 52 + .../bpf/core-builtin-fieldinfo-const-elimination.c | 29 + .../bpf/core-builtin-fieldinfo-errors-1.c | 2 +- .../bpf/core-builtin-fieldinfo-errors-2.c | 2 +- .../gcc.target/bpf/core-builtin-type-based.c | 58 + .../gcc.target/bpf/core-builtin-type-id.c | 40 + gcc/testsuite/gcc.target/bpf/core-support.h | 109 ++ 20 files changed, 1942 insertions(+), 807 deletions(-) delete mode 100644 gcc/config/bpf/bpf-passes.def create mode 100644 gcc/config/bpf/core-builtins.cc create mode 100644 gcc/config/bpf/core-builtins.h create mode 100644 gcc/testsuite/gcc.target/bpf/core-builtin-enumvalue-errors.c create mode 100644 gcc/testsuite/gcc.target/bpf/core-builtin-enumvalue-opt.c create mode 100644 gcc/testsuite/gcc.target/bpf/core-builtin-enumvalue.c create mode 100644 gcc/testsuite/gcc.target/bpf/core-builtin-fieldinfo-const-elimi [...] create mode 100644 gcc/testsuite/gcc.target/bpf/core-builtin-type-based.c create mode 100644 gcc/testsuite/gcc.target/bpf/core-builtin-type-id.c create mode 100644 gcc/testsuite/gcc.target/bpf/core-support.h