| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2008 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2013-04-17 23:09:55 -04:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-02 22:47:04 -04:00
										 |  |  | #include <algorithm>
 | 
					
						
							| 
									
										
										
										
											2015-10-06 14:59:56 +02:00
										 |  |  | #include <cstring>
 | 
					
						
							| 
									
										
										
										
											2014-09-18 23:17:41 -05:00
										 |  |  | #include "Common/CommonFuncs.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Common/CPUDetect.h"
 | 
					
						
							| 
									
										
										
										
											2015-02-23 20:40:05 +01:00
										 |  |  | #include "Common/Hash.h"
 | 
					
						
							|  |  |  | #include "Common/Intrinsics.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | static u64 (*ptrHashFunction)(const u8* src, u32 len, u32 samples) = &GetMurmurHash3; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | // uint32_t
 | 
					
						
							|  |  |  | // WARNING - may read one more byte!
 | 
					
						
							|  |  |  | // Implementation from Wikipedia.
 | 
					
						
							|  |  |  | u32 HashFletcher(const u8* data_u8, size_t length) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	const u16* data = (const u16*)data_u8; /* Pointer to the data to be summed */ | 
					
						
							|  |  |  | 	size_t len = (length + 1) / 2; /* Length in 16-bit words */ | 
					
						
							|  |  |  | 	u32 sum1 = 0xffff, sum2 = 0xffff; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (len) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		size_t tlen = len > 360 ? 360 : len; | 
					
						
							|  |  |  | 		len -= tlen; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 		do | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 			sum1 += *data++; | 
					
						
							|  |  |  | 			sum2 += sum1; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 		} while (--tlen); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		sum1 = (sum1 & 0xffff) + (sum1 >> 16); | 
					
						
							|  |  |  | 		sum2 = (sum2 & 0xffff) + (sum2 >> 16); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-28 08:57:34 +00:00
										 |  |  | 	// Second reduction step to reduce sums to 16 bits
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	sum1 = (sum1 & 0xffff) + (sum1 >> 16); | 
					
						
							|  |  |  | 	sum2 = (sum2 & 0xffff) + (sum2 >> 16); | 
					
						
							|  |  |  | 	return(sum2 << 16 | sum1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Implementation from Wikipedia
 | 
					
						
							| 
									
										
										
										
											2013-04-19 09:21:45 -04:00
										 |  |  | // Slightly slower than Fletcher above, but slightly more reliable.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | // data: Pointer to the data to be summed; len is in bytes
 | 
					
						
							|  |  |  | u32 HashAdler32(const u8* data, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-08-29 02:57:35 -04:00
										 |  |  | 	static const u32 MOD_ADLER = 65521; | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 	u32 a = 1, b = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (len) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		size_t tlen = len > 5550 ? 5550 : len; | 
					
						
							|  |  |  | 		len -= tlen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		do | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			a += *data++; | 
					
						
							|  |  |  | 			b += a; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 		} while (--tlen); | 
					
						
							| 
									
										
										
										
											2008-12-08 05:30:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		a = (a & 0xffff) + (a >> 16) * (65536 - MOD_ADLER); | 
					
						
							|  |  |  | 		b = (b & 0xffff) + (b >> 16) * (65536 - MOD_ADLER); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// It can be shown that a <= 0x1013a here, so a single subtract will do.
 | 
					
						
							|  |  |  | 	if (a >= MOD_ADLER) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		a -= MOD_ADLER; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// It can be shown that b can reach 0xfff87 here.
 | 
					
						
							|  |  |  | 	b = (b & 0xffff) + (b >> 16) * (65536 - MOD_ADLER); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (b >= MOD_ADLER) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		b -= MOD_ADLER; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return((b << 16) | a); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Stupid hash - but can't go back now :)
 | 
					
						
							|  |  |  | // Don't use for new things. At least it's reasonably fast.
 | 
					
						
							|  |  |  | u32 HashEctor(const u8* ptr, int length) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 crc = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < length; i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		crc ^= ptr[i]; | 
					
						
							|  |  |  | 		crc = (crc << 3) | (crc >> 29); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return(crc); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-02 05:21:50 -06:00
										 |  |  | #if _ARCH_64
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | //-----------------------------------------------------------------------------
 | 
					
						
							|  |  |  | // Block read - if your platform needs to do endian-swapping or can only
 | 
					
						
							|  |  |  | // handle aligned reads, do the conversion here
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | inline u64 getblock(const u64* p, int i) | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	return p[i]; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //----------
 | 
					
						
							|  |  |  | // Block mix - combine the key bits with the hash bits and scramble everything
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | inline void bmix64(u64 & h1, u64 & h2, u64 & k1, u64 & k2, u64 & c1, u64 & c2) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	k1 *= c1; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	k1  = _rotl64(k1, 23); | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	k1 *= c2; | 
					
						
							|  |  |  | 	h1 ^= k1; | 
					
						
							|  |  |  | 	h1 += h2; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	h2  = _rotl64(h2, 41); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	k2 *= c2; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	k2  = _rotl64(k2, 23); | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	k2 *= c1; | 
					
						
							|  |  |  | 	h2 ^= k2; | 
					
						
							|  |  |  | 	h2 += h1; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	h1 = h1 * 3 + 0x52dce729; | 
					
						
							|  |  |  | 	h2 = h2 * 3 + 0x38495ab5; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	c1 = c1 * 5 + 0x7b7d159c; | 
					
						
							|  |  |  | 	c2 = c2 * 5 + 0x6bce6396; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //----------
 | 
					
						
							|  |  |  | // Finalization mix - avalanches all bits to within 0.05% bias
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | inline u64 fmix64(u64 k) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	k ^= k >> 33; | 
					
						
							|  |  |  | 	k *= 0xff51afd7ed558ccd; | 
					
						
							|  |  |  | 	k ^= k >> 33; | 
					
						
							|  |  |  | 	k *= 0xc4ceb9fe1a85ec53; | 
					
						
							|  |  |  | 	k ^= k >> 33; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	return k; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | u64 GetMurmurHash3(const u8* src, u32 len, u32 samples) | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | 	const u8* data = (const u8*)src; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	const int nblocks = len / 16; | 
					
						
							| 
									
										
										
										
											2011-02-06 08:05:18 +00:00
										 |  |  | 	u32 Step = (len / 8); | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	if (samples == 0) | 
					
						
							|  |  |  | 		samples = std::max(Step, 1u); | 
					
						
							| 
									
										
										
										
											2011-02-06 08:05:18 +00:00
										 |  |  | 	Step = Step / samples; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	if (Step < 1) | 
					
						
							|  |  |  | 		Step = 1; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	u64 h1 = 0x9368e53c2f6af274; | 
					
						
							|  |  |  | 	u64 h2 = 0x586dcd208f7cd3fd; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	u64 c1 = 0x87c37b91114253d5; | 
					
						
							|  |  |  | 	u64 c2 = 0x4cf5ad432745937f; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-06 08:05:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	//----------
 | 
					
						
							|  |  |  | 	// body
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | 	const u64* blocks = (const u64*)(data); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-11 00:30:55 +13:00
										 |  |  | 	for (int i = 0; i < nblocks; i+=Step) | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 		u64 k1 = getblock(blocks, i*2+0); | 
					
						
							|  |  |  | 		u64 k2 = getblock(blocks, i*2+1); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 		bmix64(h1,h2,k1,k2,c1,c2); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	//----------
 | 
					
						
							|  |  |  | 	// tail
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | 	const u8* tail = (const u8*)(data + nblocks*16); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	u64 k1 = 0; | 
					
						
							|  |  |  | 	u64 k2 = 0; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-11 00:30:55 +13:00
										 |  |  | 	switch (len & 15) | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	case 15: k2 ^= u64(tail[14]) << 48; | 
					
						
							|  |  |  | 	case 14: k2 ^= u64(tail[13]) << 40; | 
					
						
							|  |  |  | 	case 13: k2 ^= u64(tail[12]) << 32; | 
					
						
							|  |  |  | 	case 12: k2 ^= u64(tail[11]) << 24; | 
					
						
							|  |  |  | 	case 11: k2 ^= u64(tail[10]) << 16; | 
					
						
							|  |  |  | 	case 10: k2 ^= u64(tail[ 9]) << 8; | 
					
						
							|  |  |  | 	case  9: k2 ^= u64(tail[ 8]) << 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case  8: k1 ^= u64(tail[ 7]) << 56; | 
					
						
							|  |  |  | 	case  7: k1 ^= u64(tail[ 6]) << 48; | 
					
						
							|  |  |  | 	case  6: k1 ^= u64(tail[ 5]) << 40; | 
					
						
							|  |  |  | 	case  5: k1 ^= u64(tail[ 4]) << 32; | 
					
						
							|  |  |  | 	case  4: k1 ^= u64(tail[ 3]) << 24; | 
					
						
							|  |  |  | 	case  3: k1 ^= u64(tail[ 2]) << 16; | 
					
						
							|  |  |  | 	case  2: k1 ^= u64(tail[ 1]) << 8; | 
					
						
							|  |  |  | 	case  1: k1 ^= u64(tail[ 0]) << 0; | 
					
						
							|  |  |  | 			bmix64(h1,h2,k1,k2,c1,c2); | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	//----------
 | 
					
						
							|  |  |  | 	// finalization
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	h2 ^= len; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	h1 += h2; | 
					
						
							|  |  |  | 	h2 += h1; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	h1 = fmix64(h1); | 
					
						
							|  |  |  | 	h2 = fmix64(h2); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	h1 += h2; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	return h1; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | // CRC32 hash using the SSE4.2 instruction
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | u64 GetCRC32(const u8* src, u32 len, u32 samples) | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-06-08 01:21:04 -05:00
										 |  |  | #if _M_SSE >= 0x402 || defined(_M_ARM_64)
 | 
					
						
							| 
									
										
										
										
											2014-10-16 18:15:27 -07:00
										 |  |  | 	u64 h[4] = { len, 0, 0, 0 }; | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | 	u32 Step = (len / 8); | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | 	const u64* data = (const u64*)src; | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | 	const u64* end = data + Step; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	if (samples == 0) | 
					
						
							|  |  |  | 		samples = std::max(Step, 1u); | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | 	Step = Step / samples; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	if (Step < 1) | 
					
						
							|  |  |  | 		Step = 1; | 
					
						
							| 
									
										
										
										
											2015-06-08 01:21:04 -05:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if _M_SSE >= 0x402
 | 
					
						
							| 
									
										
										
										
											2014-10-16 18:15:27 -07:00
										 |  |  | 	while (data < end - Step * 3) | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-10-16 18:15:27 -07:00
										 |  |  | 		h[0] = _mm_crc32_u64(h[0], data[Step * 0]); | 
					
						
							|  |  |  | 		h[1] = _mm_crc32_u64(h[1], data[Step * 1]); | 
					
						
							|  |  |  | 		h[2] = _mm_crc32_u64(h[2], data[Step * 2]); | 
					
						
							|  |  |  | 		h[3] = _mm_crc32_u64(h[3], data[Step * 3]); | 
					
						
							|  |  |  | 		data += Step * 4; | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-16 18:15:27 -07:00
										 |  |  | 	if (data < end - Step * 0) | 
					
						
							|  |  |  | 		h[0] = _mm_crc32_u64(h[0], data[Step * 0]); | 
					
						
							|  |  |  | 	if (data < end - Step * 1) | 
					
						
							|  |  |  | 		h[1] = _mm_crc32_u64(h[1], data[Step * 1]); | 
					
						
							|  |  |  | 	if (data < end - Step * 2) | 
					
						
							|  |  |  | 		h[2] = _mm_crc32_u64(h[2], data[Step * 2]); | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-17 22:34:45 +01:00
										 |  |  | 	if (len & 7) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		u64 temp = 0; | 
					
						
							|  |  |  | 		memcpy(&temp, end, len & 7); | 
					
						
							|  |  |  | 		h[0] = _mm_crc32_u64(h[0], temp); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-08 01:21:04 -05:00
										 |  |  | #elif defined(_M_ARM_64)
 | 
					
						
							|  |  |  | 	// We should be able to use intrinsics for this
 | 
					
						
							|  |  |  | 	// Too bad the intrinsics for this instruction was added in GCC 4.9.1
 | 
					
						
							|  |  |  | 	// The Android NDK (as of r10e) only has GCC 4.9
 | 
					
						
							|  |  |  | 	// Once the Android NDK has a newer GCC version, update these to use intrinsics
 | 
					
						
							|  |  |  | 	while (data < end - Step * 3) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		asm ("crc32x %w[res], %w[two], %x[three]" | 
					
						
							|  |  |  | 				: [res] "=r" (h[0]) | 
					
						
							|  |  |  | 				: [two] "r" (h[0]), | 
					
						
							|  |  |  | 				  [three] "r" (data[Step * 0])); | 
					
						
							|  |  |  | 		asm ("crc32x %w[res], %w[two], %x[three]" | 
					
						
							|  |  |  | 				: [res] "=r" (h[1]) | 
					
						
							|  |  |  | 				: [two] "r" (h[1]), | 
					
						
							|  |  |  | 				  [three] "r" (data[Step * 1])); | 
					
						
							|  |  |  | 		asm ("crc32x %w[res], %w[two], %x[three]" | 
					
						
							|  |  |  | 				: [res] "=r" (h[2]) | 
					
						
							|  |  |  | 				: [two] "r" (h[2]), | 
					
						
							|  |  |  | 				  [three] "r" (data[Step * 2])); | 
					
						
							|  |  |  | 		asm ("crc32x %w[res], %w[two], %x[three]" | 
					
						
							|  |  |  | 				: [res] "=r" (h[3]) | 
					
						
							|  |  |  | 				: [two] "r" (h[3]), | 
					
						
							|  |  |  | 				  [three] "r" (data[Step * 3])); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		data += Step * 4; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (data < end - Step * 0) | 
					
						
							|  |  |  | 		asm ("crc32x %w[res], %w[two], %x[three]" | 
					
						
							|  |  |  | 				: [res] "=r" (h[0]) | 
					
						
							|  |  |  | 				: [two] "r" (h[0]), | 
					
						
							|  |  |  | 				  [three] "r" (data[Step * 0])); | 
					
						
							|  |  |  | 	if (data < end - Step * 1) | 
					
						
							|  |  |  | 		asm ("crc32x %w[res], %w[two], %x[three]" | 
					
						
							|  |  |  | 				: [res] "=r" (h[1]) | 
					
						
							|  |  |  | 				: [two] "r" (h[1]), | 
					
						
							|  |  |  | 				  [three] "r" (data[Step * 1])); | 
					
						
							|  |  |  | 	if (data < end - Step * 2) | 
					
						
							|  |  |  | 		asm ("crc32x %w[res], %w[two], %x[three]" | 
					
						
							|  |  |  | 				: [res] "=r" (h[2]) | 
					
						
							|  |  |  | 				: [two] "r" (h[2]), | 
					
						
							|  |  |  | 				  [three] "r" (data[Step * 2])); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (len & 7) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		u64 temp = 0; | 
					
						
							|  |  |  | 		memcpy(&temp, end, len & 7); | 
					
						
							|  |  |  | 		asm ("crc32x %w[res], %w[two], %x[three]" | 
					
						
							|  |  |  | 				: [res] "=r" (h[0]) | 
					
						
							|  |  |  | 				: [two] "r" (h[0]), | 
					
						
							|  |  |  | 				  [three] "r" (temp)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-02-17 22:34:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 01:21:04 -05:00
										 |  |  | #if _M_SSE >= 0x402 || defined(_M_ARM_64)
 | 
					
						
							| 
									
										
										
										
											2014-10-16 18:15:27 -07:00
										 |  |  | 	// FIXME: is there a better way to combine these partial hashes?
 | 
					
						
							| 
									
										
										
										
											2014-10-18 00:22:41 -07:00
										 |  |  | 	return h[0] + (h[1] << 10) + (h[2] << 21) + (h[3] << 32); | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-06-08 01:21:04 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  |  * NOTE: This hash function is used for custom texture loading/dumping, so | 
					
						
							|  |  |  |  * it should not be changed, which would require all custom textures to be | 
					
						
							|  |  |  |  * recalculated for their new hash values. If the hashing function is | 
					
						
							|  |  |  |  * changed, make sure this one is still used when the legacy parameter is | 
					
						
							|  |  |  |  * true. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | u64 GetHashHiresTexture(const u8* src, u32 len, u32 samples) | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	const u64 m = 0xc6a4a7935bd1e995; | 
					
						
							|  |  |  | 	u64 h = len * m; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	const int r = 47; | 
					
						
							|  |  |  | 	u32 Step = (len / 8); | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | 	const u64* data = (const u64*)src; | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | 	const u64* end = data + Step; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	if (samples == 0) | 
					
						
							|  |  |  | 		samples = std::max(Step, 1u); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	Step = Step / samples; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	if (Step < 1) | 
					
						
							|  |  |  | 		Step = 1; | 
					
						
							| 
									
										
										
										
											2014-03-11 00:30:55 +13:00
										 |  |  | 	while (data < end) | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 		u64 k = data[0]; | 
					
						
							|  |  |  | 		data+=Step; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 		k *= m; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 		k ^= k >> r; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 		k *= m; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 		h ^= k; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 		h *= m; | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	const u8 * data2 = (const u8*)end; | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-11 00:30:55 +13:00
										 |  |  | 	switch (len & 7) | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	case 7: h ^= u64(data2[6]) << 48; | 
					
						
							|  |  |  | 	case 6: h ^= u64(data2[5]) << 40; | 
					
						
							|  |  |  | 	case 5: h ^= u64(data2[4]) << 32; | 
					
						
							|  |  |  | 	case 4: h ^= u64(data2[3]) << 24; | 
					
						
							|  |  |  | 	case 3: h ^= u64(data2[2]) << 16; | 
					
						
							|  |  |  | 	case 2: h ^= u64(data2[1]) << 8; | 
					
						
							|  |  |  | 	case 1: h ^= u64(data2[0]); | 
					
						
							|  |  |  | 			h *= m; | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	h ^= h >> r; | 
					
						
							|  |  |  | 	h *= m; | 
					
						
							|  |  |  | 	h ^= h >> r; | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return h; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | // CRC32 hash using the SSE4.2 instruction
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | u64 GetCRC32(const u8* src, u32 len, u32 samples) | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | #if _M_SSE >= 0x402
 | 
					
						
							|  |  |  | 	u32 h = len; | 
					
						
							|  |  |  | 	u32 Step = (len/4); | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | 	const u32* data = (const u32 *)src; | 
					
						
							|  |  |  | 	const u32* end = data + Step; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	if (samples == 0) | 
					
						
							|  |  |  | 		samples = std::max(Step, 1u); | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | 	Step  = Step / samples; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	if (Step < 1) | 
					
						
							|  |  |  | 		Step = 1; | 
					
						
							| 
									
										
										
										
											2014-03-11 00:30:55 +13:00
										 |  |  | 	while (data < end) | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | 		h = _mm_crc32_u32(h, data[0]); | 
					
						
							|  |  |  | 		data += Step; | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | 	const u8* data2 = (const u8*)end; | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | 	return (u64)_mm_crc32_u32(h, u32(data2[0])); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | //-----------------------------------------------------------------------------
 | 
					
						
							|  |  |  | // Block read - if your platform needs to do endian-swapping or can only
 | 
					
						
							|  |  |  | // handle aligned reads, do the conversion here
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | inline u32 getblock(const u32* p, int i) | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	return p[i]; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | //----------
 | 
					
						
							|  |  |  | // Finalization mix - force all bits of a hash block to avalanche
 | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | // avalanches all bits to within 0.25% bias
 | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | inline u32 fmix32(u32 h) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	h ^= h >> 16; | 
					
						
							|  |  |  | 	h *= 0x85ebca6b; | 
					
						
							|  |  |  | 	h ^= h >> 13; | 
					
						
							|  |  |  | 	h *= 0xc2b2ae35; | 
					
						
							|  |  |  | 	h ^= h >> 16; | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	return h; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | inline void bmix32(u32 & h1, u32 & h2, u32 & k1, u32 & k2, u32 & c1, u32 & c2) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	k1 *= c1; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	k1  = _rotl(k1, 11); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	k1 *= c2; | 
					
						
							|  |  |  | 	h1 ^= k1; | 
					
						
							|  |  |  | 	h1 += h2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	h2  = _rotl(h2, 17); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 	k2 *= c2; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	k2  = _rotl(k2, 11); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	k2 *= c1; | 
					
						
							|  |  |  | 	h2 ^= k2; | 
					
						
							|  |  |  | 	h2 += h1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	h1  = h1*3+0x52dce729; | 
					
						
							|  |  |  | 	h2  = h2*3+0x38495ab5; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	c1  = c1*5+0x7b7d159c; | 
					
						
							|  |  |  | 	c2  = c2*5+0x6bce6396; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //----------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-29 01:55:20 -06:00
										 |  |  | u64 GetMurmurHash3(const u8* src, u32 len, u32 samples) | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | 	const u8* data = (const u8*)src; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	u32 out[2]; | 
					
						
							| 
									
										
										
										
											2011-02-06 08:05:18 +00:00
										 |  |  | 	const int nblocks = len / 8; | 
					
						
							|  |  |  | 	u32 Step = (len / 4); | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	if (samples == 0) | 
					
						
							|  |  |  | 		samples = std::max(Step, 1u); | 
					
						
							| 
									
										
										
										
											2011-02-06 08:05:18 +00:00
										 |  |  | 	Step = Step / samples; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	if (Step < 1) | 
					
						
							|  |  |  | 		Step = 1; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	u32 h1 = 0x8de1c3ac; | 
					
						
							|  |  |  | 	u32 h2 = 0xbab98226; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u32 c1 = 0x95543787; | 
					
						
							|  |  |  | 	u32 c2 = 0x2ad7eb25; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//----------
 | 
					
						
							|  |  |  | 	// body
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | 	const u32* blocks = (const u32*)(data + nblocks*8); | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-11 00:30:55 +13:00
										 |  |  | 	for (int i = -nblocks; i < 0; i+=Step) | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		u32 k1 = getblock(blocks,i*2+0); | 
					
						
							|  |  |  | 		u32 k2 = getblock(blocks,i*2+1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		bmix32(h1,h2,k1,k2,c1,c2); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//----------
 | 
					
						
							|  |  |  | 	// tail
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | 	const u8* tail = (const u8*)(data + nblocks*8); | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	u32 k1 = 0; | 
					
						
							|  |  |  | 	u32 k2 = 0; | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-11 00:30:55 +13:00
										 |  |  | 	switch (len & 7) | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	case 7: k2 ^= tail[6] << 16; | 
					
						
							|  |  |  | 	case 6: k2 ^= tail[5] << 8; | 
					
						
							|  |  |  | 	case 5: k2 ^= tail[4] << 0; | 
					
						
							|  |  |  | 	case 4: k1 ^= tail[3] << 24; | 
					
						
							|  |  |  | 	case 3: k1 ^= tail[2] << 16; | 
					
						
							|  |  |  | 	case 2: k1 ^= tail[1] << 8; | 
					
						
							|  |  |  | 	case 1: k1 ^= tail[0] << 0; | 
					
						
							|  |  |  | 	        bmix32(h1,h2,k1,k2,c1,c2); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//----------
 | 
					
						
							|  |  |  | 	// finalization
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	h2 ^= len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	h1 += h2; | 
					
						
							|  |  |  | 	h2 += h1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	h1  = fmix32(h1); | 
					
						
							|  |  |  | 	h2  = fmix32(h2); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	h1 += h2; | 
					
						
							|  |  |  | 	h2 += h1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	out[0] = h1; | 
					
						
							|  |  |  | 	out[1] = h2; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | 	return *((u64*)&out); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * FIXME: The old 32-bit version of this hash made different hashes than the | 
					
						
							|  |  |  |  * 64-bit version. Until someone can make a new version of the 32-bit one that | 
					
						
							|  |  |  |  * makes identical hashes, this is just a c/p of the 64-bit one. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | u64 GetHashHiresTexture(const u8* src, u32 len, u32 samples) | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-02-05 16:06:05 +00:00
										 |  |  | 	const u64 m = 0xc6a4a7935bd1e995ULL; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	u64 h = len * m; | 
					
						
							|  |  |  | 	const int r = 47; | 
					
						
							|  |  |  | 	u32 Step = (len / 8); | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | 	const u64* data = (const u64*)src; | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | 	const u64* end = data + Step; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	if (samples == 0) | 
					
						
							|  |  |  | 		samples = std::max(Step, 1u); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	Step = Step / samples; | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | 	if (Step < 1) | 
					
						
							|  |  |  | 		Step = 1; | 
					
						
							| 
									
										
										
										
											2014-03-11 00:30:55 +13:00
										 |  |  | 	while (data < end) | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		u64 k = data[0]; | 
					
						
							|  |  |  | 		data+=Step; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 		k *= m; | 
					
						
							|  |  |  | 		k ^= k >> r; | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 		k *= m; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 		h ^= k; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 		h *= m; | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 22:18:18 +01:00
										 |  |  | 	const u8* data2 = (const u8*)end; | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-11 00:30:55 +13:00
										 |  |  | 	switch (len & 7) | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	case 7: h ^= u64(data2[6]) << 48; | 
					
						
							|  |  |  | 	case 6: h ^= u64(data2[5]) << 40; | 
					
						
							|  |  |  | 	case 5: h ^= u64(data2[4]) << 32; | 
					
						
							|  |  |  | 	case 4: h ^= u64(data2[3]) << 24; | 
					
						
							|  |  |  | 	case 3: h ^= u64(data2[2]) << 16; | 
					
						
							|  |  |  | 	case 2: h ^= u64(data2[1]) << 8; | 
					
						
							|  |  |  | 	case 1: h ^= u64(data2[0]); | 
					
						
							|  |  |  | 			h *= m; | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	h ^= h >> r; | 
					
						
							|  |  |  | 	h *= m; | 
					
						
							|  |  |  | 	h ^= h >> r; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-04 08:37:58 +00:00
										 |  |  | 	return h; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-08-28 15:09:42 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-21 21:16:51 +01:00
										 |  |  | u64 GetHash64(const u8* src, u32 len, u32 samples) | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-19 21:51:12 -04:00
										 |  |  | 	return ptrHashFunction(src, len, samples); | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // sets the hash function used for the texture cache
 | 
					
						
							| 
									
										
										
										
											2014-12-22 22:35:08 +01:00
										 |  |  | void SetHash64Function() | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | { | 
					
						
							|  |  |  | #if _M_SSE >= 0x402
 | 
					
						
							| 
									
										
										
										
											2014-12-22 22:35:08 +01:00
										 |  |  | 	if (cpu_info.bSSE4_2) // sse crc32 version
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		ptrHashFunction = &GetCRC32; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2015-06-08 01:21:04 -05:00
										 |  |  | #elif defined(_M_ARM_64)
 | 
					
						
							|  |  |  | 	if (cpu_info.bCRC32) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		ptrHashFunction = &GetCRC32; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2014-12-22 22:35:08 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-02-05 10:08:06 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		ptrHashFunction = &GetMurmurHash3; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 |