Swapping around vec128 to match AVX order.

Was really hoping all this would fix some bugs, but no luck :(
This commit is contained in:
Ben Vanik
2014-08-29 20:39:26 -07:00
parent 8ca7642226
commit f74aafeb8a
27 changed files with 2845 additions and 821 deletions

View File

@@ -13,6 +13,7 @@
'dependencies': [
'alloy',
'xenia',
],
'include_dirs': [
@@ -40,11 +41,11 @@
#'test_div.cc',
#'test_dot_product_3.cc',
#'test_dot_product_4.cc',
#'test_extract.cc',
#'test_insert.cc',
'test_extract.cc',
'test_insert.cc',
#'test_is_true_false.cc',
#'test_load_clock.cc',
#'test_load_vector.cc',
'test_load_vector_shl_shr.cc',
#'test_log2.cc',
#'test_max.cc',
#'test_min.cc',
@@ -55,32 +56,32 @@
#'test_neg.cc',
#'test_not.cc',
#'test_or.cc',
#'test_pack.cc',
#'test_permute.cc',
'test_pack.cc',
'test_permute.cc',
#'test_pow2.cc',
#'test_rotate_left.cc',
#'test_round.cc',
#'test_rsqrt.cc',
#'test_select.cc',
#'test_sha.cc',
#'test_shl.cc',
#'test_shr.cc',
'test_sha.cc',
'test_shl.cc',
'test_shr.cc',
#'test_sign_extend.cc',
#'test_splat.cc',
#'test_sqrt.cc',
#'test_sub.cc',
#'test_swizzle.cc',
'test_swizzle.cc',
#'test_truncate.cc',
#'test_unpack.cc',
'test_unpack.cc',
'test_vector_add.cc',
#'test_vector_compare.cc',
#'test_vector_convert.cc',
'test_vector_max.cc',
'test_vector_min.cc',
#'test_vector_rotate_left.cc',
#'test_vector_sha.cc',
#'test_vector_shl.cc',
#'test_vector_shr.cc',
'test_vector_rotate_left.cc',
'test_vector_sha.cc',
'test_vector_shl.cc',
'test_vector_shr.cc',
#'test_vector_sub.cc',
#'test_xor.cc',
#'test_zero_extend.cc',