-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
210 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "common.h" | ||
|
||
int vpickve2gr_b(v128 a, int idx) { | ||
int dst; | ||
#include "vpickve2gr_b.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
FUZZ1(vpickve2gr_b, 0); | ||
FUZZ1(vpickve2gr_b, 7); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dst = a.byte[idx]; | ||
dst = (s8)a.byte[idx]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "common.h" | ||
|
||
unsigned int vpickve2gr_bu(v128 a, int idx) { | ||
unsigned int dst; | ||
#include "vpickve2gr_bu.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
FUZZ1(vpickve2gr_bu, 0); | ||
FUZZ1(vpickve2gr_bu, 7); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dst = a.byte[idx]; | ||
dst = (u8)a.byte[idx]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "common.h" | ||
|
||
long int vpickve2gr_d(v128 a, int idx) { | ||
long int dst; | ||
#include "vpickve2gr_d.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
FUZZ1(vpickve2gr_d, 0); | ||
FUZZ1(vpickve2gr_d, 1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dst = a.dword[idx]; | ||
dst = (s64)a.dword[idx]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "common.h" | ||
|
||
unsigned long int vpickve2gr_du(v128 a, int idx) { | ||
unsigned long int dst; | ||
#include "vpickve2gr_du.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
FUZZ1(vpickve2gr_du, 0); | ||
FUZZ1(vpickve2gr_du, 1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dst = a.dword[idx]; | ||
dst = (u64)a.dword[idx]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "common.h" | ||
|
||
int vpickve2gr_h(v128 a, int idx) { | ||
int dst; | ||
#include "vpickve2gr_h.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
FUZZ1(vpickve2gr_h, 0); | ||
FUZZ1(vpickve2gr_h, 7); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dst = a.half[idx]; | ||
dst = (s16)a.half[idx]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "common.h" | ||
|
||
unsigned int vpickve2gr_hu(v128 a, int idx) { | ||
unsigned int dst; | ||
#include "vpickve2gr_hu.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
FUZZ1(vpickve2gr_hu, 0); | ||
FUZZ1(vpickve2gr_hu, 7); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dst = a.half[idx]; | ||
dst = (u16)a.half[idx]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "common.h" | ||
|
||
int vpickve2gr_w(v128 a, int idx) { | ||
int dst; | ||
#include "vpickve2gr_w.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
FUZZ1(vpickve2gr_w, 0); | ||
FUZZ1(vpickve2gr_w, 3); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dst = a.word[idx]; | ||
dst = (s32)a.word[idx]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "common.h" | ||
|
||
unsigned int vpickve2gr_wu(v128 a, int idx) { | ||
unsigned int dst; | ||
#include "vpickve2gr_wu.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
FUZZ1(vpickve2gr_wu, 0); | ||
FUZZ1(vpickve2gr_wu, 3); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dst = a.word[idx]; | ||
dst = (u32)a.word[idx]; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#include "common.h" | ||
|
||
v256 xvbitsel_v(v256 a, v256 b, v256 c) { | ||
v256 dst; | ||
#include "xvbitsel_v.h" | ||
return dst; | ||
} | ||
|
||
void test() { XFUZZ3(xvbitsel_v); } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#include "common.h" | ||
|
||
v256 xvbitseli_b(v256 a, v256 b, int imm) { | ||
v256 dst; | ||
#include "xvbitseli_b.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
XFUZZ2(xvbitseli_b, 0x00); | ||
XFUZZ2(xvbitseli_b, 0x01); | ||
XFUZZ2(xvbitseli_b, 0x01); | ||
XFUZZ2(xvbitseli_b, 0x80); | ||
XFUZZ2(xvbitseli_b, 0xFF); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "common.h" | ||
|
||
long int xvpickve2gr_d(v256 a, int idx) { | ||
long int dst; | ||
#include "xvpickve2gr_d.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
XFUZZ1(xvpickve2gr_d, 0); | ||
XFUZZ1(xvpickve2gr_d, 3); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dst = a.dword[idx]; | ||
dst = (s64)a.dword[idx]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "common.h" | ||
|
||
unsigned long int xvpickve2gr_du(v256 a, int idx) { | ||
unsigned long int dst; | ||
#include "xvpickve2gr_du.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
XFUZZ1(xvpickve2gr_du, 0); | ||
XFUZZ1(xvpickve2gr_du, 3); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dst = a.dword[idx]; | ||
dst = (u64)a.dword[idx]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "common.h" | ||
|
||
int xvpickve2gr_w(v256 a, int idx) { | ||
int dst; | ||
#include "xvpickve2gr_w.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
XFUZZ1(xvpickve2gr_w, 0); | ||
XFUZZ1(xvpickve2gr_w, 7); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dst = a.word[idx]; | ||
dst = (s32)a.word[idx]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "common.h" | ||
|
||
unsigned int xvpickve2gr_wu(v256 a, int idx) { | ||
unsigned int dst; | ||
#include "xvpickve2gr_wu.h" | ||
return dst; | ||
} | ||
|
||
void test() { | ||
XFUZZ1(xvpickve2gr_wu, 0); | ||
XFUZZ1(xvpickve2gr_wu, 7); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dst = a.word[idx]; | ||
dst = (u32)a.word[idx]; |