X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.cpp;h=c6b294a00cad8fd5aeb1eae1bf673b53b3f4026a;hp=fa0d39de00db423202eab55e5d2e82d0f94ebd4a;hb=d44ac0a4850f389ee2fdb8812104150c323d9ec2;hpb=c698362680d7d66801be100e20346bbbf4ec5c4f diff --git a/src/tt.cpp b/src/tt.cpp index fa0d39de..c6b294a0 100644 --- a/src/tt.cpp +++ b/src/tt.cpp @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008-2012 Marco Costalba, Joona Kiiski, Tord Romstad + Copyright (C) 2008-2013 Marco Costalba, Joona Kiiski, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -34,22 +34,23 @@ void TranspositionTable::set_size(size_t mbSize) { assert(msb((mbSize << 20) / sizeof(TTEntry)) < 32); - uint32_t size = 1 << msb((mbSize << 20) / sizeof(TTEntry[ClusterSize])); + uint32_t size = ClusterSize << msb((mbSize << 20) / sizeof(TTEntry[ClusterSize])); - if (clusterMask == size - 1) + if (hashMask == size - ClusterSize) return; - clusterMask = size - 1; - delete [] entries; - entries = new (std::nothrow) TTEntry[size * ClusterSize]; + hashMask = size - ClusterSize; + free(mem); + mem = malloc(size * sizeof(TTEntry) + CACHE_LINE_SIZE - 1); - if (!entries) + if (!mem) { std::cerr << "Failed to allocate " << mbSize << "MB for transposition table." << std::endl; exit(EXIT_FAILURE); } + table = (TTEntry*)((uintptr_t(mem) + CACHE_LINE_SIZE - 1) & ~(CACHE_LINE_SIZE - 1)); clear(); // Operator new is not guaranteed to initialize memory to zero } @@ -60,7 +61,7 @@ void TranspositionTable::set_size(size_t mbSize) { void TranspositionTable::clear() { - memset(entries, 0, (clusterMask + 1) * sizeof(TTEntry[ClusterSize])); + memset(table, 0, (hashMask + ClusterSize) * sizeof(TTEntry)); }