diff options
author | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-02-13 16:47:33 +0100 |
---|---|---|
committer | Aleksandar Markovic <amarkovic@wavecomp.com> | 2019-02-14 17:47:37 +0100 |
commit | db37850bb4ead8080da878c1c0eb04d33c81bfd4 (patch) | |
tree | b45cc2b4126c443a4a8f12f92af6b551c4657eb0 | |
parent | fc76f486677e9aa4403a673cf76ede0c20273ef6 (diff) | |
download | qemu-db37850bb4ead8080da878c1c0eb04d33c81bfd4.zip |
tests/tcg: target/mips: Add wrappers for MSA logic instructions
Add wrappers for MSA logic instructions.
Reviewed-by: Aleksandar Rikalo <arikalo@wavecomp.com>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
-rw-r--r-- | tests/tcg/mips/include/wrappers_msa.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/tcg/mips/include/wrappers_msa.h b/tests/tcg/mips/include/wrappers_msa.h index 3017ed51d4..7a77fb9686 100644 --- a/tests/tcg/mips/include/wrappers_msa.h +++ b/tests/tcg/mips/include/wrappers_msa.h @@ -92,5 +92,10 @@ DO_MSA__WD__WS_WT(ILVR_H, ilvr.h) DO_MSA__WD__WS_WT(ILVR_W, ilvr.w) DO_MSA__WD__WS_WT(ILVR_D, ilvr.d) +DO_MSA__WD__WS_WT(AND_V, and.v) +DO_MSA__WD__WS_WT(NOR_V, nor.v) +DO_MSA__WD__WS_WT(OR_V, or.v) +DO_MSA__WD__WS_WT(XOR_V, xor.v) + #endif |