X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Ftt.h;h=fb414bf157aeba9fa98fbe70bbb728cd27445e1e;hb=2a461b4b745b2542f6e13bab8c60abdb366bc128;hp=e8dc021bafc1d537524ebdfa2b55754d98388f6b;hpb=aabd526f7c9cec1d1f6a8f7da738311487aa42b8;p=stockfish diff --git a/src/tt.h b/src/tt.h index e8dc021b..fb414bf1 100644 --- a/src/tt.h +++ b/src/tt.h @@ -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 Marco Costalba + Copyright (C) 2008-2009 Marco Costalba Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -92,7 +92,13 @@ public: private: inline TTEntry* first_entry(const Key posKey) const; - unsigned size, writes; + // Be sure 'writes' is at least one cacheline away + // from read only variables. + unsigned char pad_before[64 - sizeof(unsigned)]; + unsigned writes; // heavy SMP read/write access here + unsigned char pad_after[64]; + + unsigned size; TTEntry* entries; uint8_t generation; };