This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from f945dedfd3 Make ada_decode not use a static buffer new ddd44b7053 sim: Add PRU simulator port new e2e9097bd2 Add testsuite for the PRU simulator port
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: gdb/ChangeLog | 4 + gdb/NEWS | 4 + sim/ChangeLog | 6 + sim/MAINTAINERS | 1 + sim/common/ChangeLog | 5 + sim/common/gennltvals.sh | 4 + sim/common/nltvals.def | 31 ++ sim/configure | 8 + sim/configure.tgt | 3 + sim/pru/ChangeLog | 11 + sim/pru/Makefile.in | 29 ++ sim/{aarch64 => pru}/aclocal.m4 | 0 sim/{aarch64 => pru}/config.in | 0 sim/{avr => pru}/configure | 0 sim/pru/configure.ac | 31 ++ sim/pru/interp.c | 848 +++++++++++++++++++++++++++++++++ sim/pru/pru.h | 110 +++++ sim/pru/pru.isa | 249 ++++++++++ sim/pru/sim-main.h | 91 ++++ sim/testsuite/ChangeLog | 4 + sim/testsuite/configure | 3 + sim/testsuite/sim/pru/ChangeLog | 13 + sim/testsuite/sim/pru/add.s | 40 ++ sim/testsuite/sim/pru/allinsn.exp | 33 ++ sim/testsuite/sim/pru/dmem-zero-pass.s | 29 ++ sim/testsuite/sim/pru/dmem-zero-trap.s | 32 ++ sim/testsuite/sim/pru/dram.s | 72 +++ sim/testsuite/sim/pru/jmp.s | 40 ++ sim/testsuite/sim/pru/loop-imm.s | 43 ++ sim/testsuite/sim/pru/loop-reg.s | 44 ++ sim/testsuite/sim/pru/mul.s | 89 ++++ sim/testsuite/sim/pru/subreg.s | 40 ++ sim/testsuite/sim/pru/testutils.inc | 100 ++++ 33 files changed, 2017 insertions(+) create mode 100644 sim/pru/ChangeLog create mode 100644 sim/pru/Makefile.in copy sim/{aarch64 => pru}/aclocal.m4 (100%) copy sim/{aarch64 => pru}/config.in (100%) copy sim/{avr => pru}/configure (100%) create mode 100644 sim/pru/configure.ac create mode 100644 sim/pru/interp.c create mode 100644 sim/pru/pru.h create mode 100644 sim/pru/pru.isa create mode 100644 sim/pru/sim-main.h create mode 100644 sim/testsuite/sim/pru/ChangeLog create mode 100644 sim/testsuite/sim/pru/add.s create mode 100644 sim/testsuite/sim/pru/allinsn.exp create mode 100644 sim/testsuite/sim/pru/dmem-zero-pass.s create mode 100644 sim/testsuite/sim/pru/dmem-zero-trap.s create mode 100644 sim/testsuite/sim/pru/dram.s create mode 100644 sim/testsuite/sim/pru/jmp.s create mode 100644 sim/testsuite/sim/pru/loop-imm.s create mode 100644 sim/testsuite/sim/pru/loop-reg.s create mode 100644 sim/testsuite/sim/pru/mul.s create mode 100644 sim/testsuite/sim/pru/subreg.s create mode 100644 sim/testsuite/sim/pru/testutils.inc