]> git.sesse.net Git - stockfish/commitdiff
Revert "Cache line aligned TT"
authorMarco Costalba <mcostalba@gmail.com>
Tue, 30 Apr 2013 06:08:54 +0000 (08:08 +0200)
committerMarco Costalba <mcostalba@gmail.com>
Tue, 30 Apr 2013 17:42:21 +0000 (19:42 +0200)
This reverts commit 083fe5812485597e13943b690cc24a8f25c0d140

It seems to break Android build

No functional change.

src/misc.cpp
src/tt.cpp
src/tt.h
src/types.h

index 477fb392c6add636f01a46c7e0bf1b7ca51113c4..c0c00b009fa1ab347ebb97599a2a1e687d4346ca 100644 (file)
@@ -237,8 +237,10 @@ void prefetch(char* addr) {
 
 #  if defined(__INTEL_COMPILER) || defined(_MSC_VER)
   _mm_prefetch(addr, _MM_HINT_T0);
+  _mm_prefetch(addr+64, _MM_HINT_T0); // 64 bytes ahead
 #  else
   __builtin_prefetch(addr);
+  __builtin_prefetch(addr+64);
 #  endif
 }
 
index 998d73783be003e8deb2567695e51527a7657bf3..80ea493bd9c68e3593936bc7bee7a101c195a0de 100644 (file)
@@ -39,18 +39,18 @@ void TranspositionTable::set_size(size_t mbSize) {
   if (hashMask == size - ClusterSize)
       return;
 
-  free(mem);
-  mem = malloc(size * sizeof(TTEntry) + (CACHE_LINE_SIZE - 1));
-  if (!mem)
+  hashMask = size - ClusterSize;
+  delete [] table;
+  table = new (std::nothrow) TTEntry[size];
+
+  if (!table)
   {
       std::cerr << "Failed to allocate " << mbSize
                 << "MB for transposition table." << std::endl;
       exit(EXIT_FAILURE);
   }
 
-  table = (TTEntry*)((size_t(mem) + CACHE_LINE_SIZE - 1) & ~(CACHE_LINE_SIZE - 1));
-  hashMask = size - ClusterSize;
-  clear(); // Newly allocated block of memory is not initialized
+  clear(); // Operator new is not guaranteed to initialize memory to zero
 }
 
 
index 1caa277e821ac0463110fe0df6487b74f7e20f79..c7c39e90cc9918d3cddb8611a12d8e66ffbf63a8 100644 (file)
--- a/src/tt.h
+++ b/src/tt.h
@@ -85,7 +85,7 @@ class TranspositionTable {
   static const unsigned ClusterSize = 4; // A cluster is 64 Bytes
 
 public:
- ~TranspositionTable() { free(mem); }
+ ~TranspositionTable() { delete [] table; }
   void new_search() { generation++; }
 
   TTEntry* probe(const Key key) const;
@@ -98,7 +98,6 @@ public:
 private:
   uint32_t hashMask;
   TTEntry* table;
-  void* mem;
   uint8_t generation; // Size must be not bigger then TTEntry::generation8
 };
 
index dae86db310d6d80bc715e99c7aafd9ca482225e4..1def7d00aeb8f200230c7b50911e71c2acfdeb91 100644 (file)
 #   include <xmmintrin.h> // Intel and Microsoft header for _mm_prefetch()
 #  endif
 
-#define CACHE_LINE_SIZE 64
 #if defined(_MSC_VER) || defined(__INTEL_COMPILER)
-#  define CACHE_LINE_ALIGNMENT __declspec(align(CACHE_LINE_SIZE))
+#  define CACHE_LINE_ALIGNMENT __declspec(align(64))
 #else
-#  define CACHE_LINE_ALIGNMENT  __attribute__ ((aligned(CACHE_LINE_SIZE)))
+#  define CACHE_LINE_ALIGNMENT  __attribute__ ((aligned(64)))
 #endif
 
 #if defined(_MSC_VER)