> -----Original Message----- > From: Anton Johansson <a...@rev.ng> > Sent: Wednesday, February 9, 2022 11:03 AM > To: qemu-devel@nongnu.org > Cc: a...@rev.ng; Taylor Simpson <tsimp...@quicinc.com>; Brian Cain > <bc...@quicinc.com>; Michael Lambert <mlamb...@quicinc.com>; > bab...@rev.ng; ni...@rev.ng; richard.hender...@linaro.org > Subject: [PATCH v8 12/12] target/hexagon: import additional tests > > From: Niccolò Izzo <ni...@rev.ng> > > Signed-off-by: Alessandro Di Federico <a...@rev.ng> > Signed-off-by: Niccolò Izzo <ni...@rev.ng> > Signed-off-by: Anton Johansson <a...@rev.ng> > --- > tests/tcg/hexagon/Makefile.target | 28 ++++++++++++- > tests/tcg/hexagon/crt.S | 14 +++++++ > tests/tcg/hexagon/test_abs.S | 17 ++++++++ > tests/tcg/hexagon/test_bitcnt.S | 40 +++++++++++++++++++ > tests/tcg/hexagon/test_bitsplit.S | 22 ++++++++++ > tests/tcg/hexagon/test_call.S | 64 ++++++++++++++++++++++++++++++ > tests/tcg/hexagon/test_clobber.S | 29 ++++++++++++++ > tests/tcg/hexagon/test_cmp.S | 31 +++++++++++++++ > tests/tcg/hexagon/test_dotnew.S | 38 ++++++++++++++++++ > tests/tcg/hexagon/test_ext.S | 13 ++++++ > tests/tcg/hexagon/test_fibonacci.S | 30 ++++++++++++++ > tests/tcg/hexagon/test_hl.S | 16 ++++++++ > tests/tcg/hexagon/test_hwloops.S | 19 +++++++++ > tests/tcg/hexagon/test_jmp.S | 22 ++++++++++ > tests/tcg/hexagon/test_lsr.S | 36 +++++++++++++++++ > tests/tcg/hexagon/test_mpyi.S | 17 ++++++++ > tests/tcg/hexagon/test_packet.S | 29 ++++++++++++++ > tests/tcg/hexagon/test_reorder.S | 33 +++++++++++++++ > tests/tcg/hexagon/test_round.S | 29 ++++++++++++++ > tests/tcg/hexagon/test_vavgw.S | 31 +++++++++++++++ > tests/tcg/hexagon/test_vcmpb.S | 30 ++++++++++++++ > tests/tcg/hexagon/test_vcmpw.S | 30 ++++++++++++++ > tests/tcg/hexagon/test_vlsrw.S | 20 ++++++++++ > tests/tcg/hexagon/test_vmaxh.S | 35 ++++++++++++++++ > tests/tcg/hexagon/test_vminh.S | 35 ++++++++++++++++ > tests/tcg/hexagon/test_vpmpyh.S | 28 +++++++++++++ > tests/tcg/hexagon/test_vspliceb.S | 31 +++++++++++++++ > 27 files changed, 766 insertions(+), 1 deletion(-) create mode 100644 > tests/tcg/hexagon/crt.S create mode 100644 tests/tcg/hexagon/test_abs.S > create mode 100644 tests/tcg/hexagon/test_bitcnt.S create mode 100644 > tests/tcg/hexagon/test_bitsplit.S create mode 100644 > tests/tcg/hexagon/test_call.S create mode 100644 > tests/tcg/hexagon/test_clobber.S create mode 100644 > tests/tcg/hexagon/test_cmp.S create mode 100644 > tests/tcg/hexagon/test_dotnew.S create mode 100644 > tests/tcg/hexagon/test_ext.S create mode 100644 > tests/tcg/hexagon/test_fibonacci.S > create mode 100644 tests/tcg/hexagon/test_hl.S create mode 100644 > tests/tcg/hexagon/test_hwloops.S create mode 100644 > tests/tcg/hexagon/test_jmp.S create mode 100644 > tests/tcg/hexagon/test_lsr.S create mode 100644 > tests/tcg/hexagon/test_mpyi.S create mode 100644 > tests/tcg/hexagon/test_packet.S create mode 100644 > tests/tcg/hexagon/test_reorder.S create mode 100644 > tests/tcg/hexagon/test_round.S create mode 100644 > tests/tcg/hexagon/test_vavgw.S create mode 100644 > tests/tcg/hexagon/test_vcmpb.S create mode 100644 > tests/tcg/hexagon/test_vcmpw.S create mode 100644 > tests/tcg/hexagon/test_vlsrw.S create mode 100644 > tests/tcg/hexagon/test_vmaxh.S create mode 100644 > tests/tcg/hexagon/test_vminh.S create mode 100644 > tests/tcg/hexagon/test_vpmpyh.S create mode 100644 > tests/tcg/hexagon/test_vspliceb.S
Reviewed-by: Taylor Simpson <tsimp...@quicinc.com>