X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.cpp;h=a8aa1b6574604d48fb91a513a066e6dedbaec0ae;hp=5ea6a808acf86b2ad256f8715bf5c59772e015b1;hb=bc0871acbce42a02ae9bbbfb95529b0a49f7588a;hpb=166c09a7a0eafb706a961d6533c73cc248f6df94 diff --git a/src/tt.cpp b/src/tt.cpp index 5ea6a808..a8aa1b65 100644 --- a/src/tt.cpp +++ b/src/tt.cpp @@ -25,14 +25,11 @@ #include #include #include +#include #include "movegen.h" #include "tt.h" -#if defined(_MSC_VER) -#include -#endif - // The main transposition table TranspositionTable TT; @@ -124,8 +121,8 @@ void TranspositionTable::store(const Key posKey, Value v, ValueType t, Depth d, { if (!tte->key() || tte->key() == posKey32) // empty or overwrite old { - // Do not overwrite when new type is VALUE_TYPE_EVAL - if (tte->key() && t == VALUE_TYPE_EVAL) + // Do not overwrite when new type is VALUE_TYPE_EV_LO + if (tte->key() && t == VALUE_TYPE_EV_LO) return; if (m == MOVE_NONE) @@ -175,16 +172,15 @@ TTEntry* TranspositionTable::retrieve(const Key posKey) const { void TranspositionTable::prefetch(const Key posKey) const { -#if defined(_MSC_VER) - char* addr = (char*)first_entry(posKey); - _mm_prefetch(addr, _MM_HINT_T0); - _mm_prefetch(addr+64, _MM_HINT_T0); -#else - // We need to force an asm volatile here because gcc builtin - // is optimized away by Intel compiler. - char* addr = (char*)first_entry(posKey); - asm volatile("prefetcht0 %0" :: "m" (addr)); +#if defined(__INTEL_COMPILER) || defined(__ICL) + // This hack prevents prefetches to be optimized away by the + // Intel compiler. Both MSVC and gcc seems not affected. + __asm__ (""); #endif + + char const* addr = (char*)first_entry(posKey); + _mm_prefetch(addr, _MM_HINT_T2); + _mm_prefetch(addr+64, _MM_HINT_T2); // 64 bytes ahead } @@ -212,7 +208,9 @@ void TranspositionTable::insert_pv(const Position& pos, Move pv[]) { for (int i = 0; pv[i] != MOVE_NONE; i++) { - store(p.get_key(), VALUE_NONE, VALUE_TYPE_NONE, Depth(-127*OnePly), pv[i]); + TTEntry *tte = retrieve(p.get_key()); + if (!tte || tte->move() != pv[i]) + store(p.get_key(), VALUE_NONE, VALUE_TYPE_NONE, Depth(-127*OnePly), pv[i]); p.do_move(pv[i], st); } } @@ -224,27 +222,26 @@ void TranspositionTable::insert_pv(const Position& pos, Move pv[]) { /// will often get single-move PVs when the search stops while failing high, /// and a single-move PV means that we don't have a ponder move. -void TranspositionTable::extract_pv(const Position& pos, Move pv[]) { +void TranspositionTable::extract_pv(const Position& pos, Move pv[], const int PLY_MAX) { - int ply; - Position p(pos); - StateInfo st[100]; - - for (ply = 0; pv[ply] != MOVE_NONE; ply++) - p.do_move(pv[ply], st[ply]); - - bool stop; const TTEntry* tte; - for (stop = false, tte = retrieve(p.get_key()); - tte && tte->move() != MOVE_NONE && !stop; - tte = retrieve(p.get_key()), ply++) + StateInfo st; + Position p(pos); + int ply = 0; + + // Update position to the end of current PV + while (pv[ply] != MOVE_NONE) + p.do_move(pv[ply++], st); + + // Try to add moves from TT while possible + while ( (tte = retrieve(p.get_key())) != NULL + && tte->move() != MOVE_NONE + && move_is_legal(p, tte->move()) + && (!p.is_draw() || ply < 2) + && ply < PLY_MAX) { - if (!move_is_legal(p, tte->move())) - break; pv[ply] = tte->move(); - p.do_move(pv[ply], st[ply]); - for (int j = 0; j < ply; j++) - if (st[j].key == p.get_key()) stop = true; + p.do_move(pv[ply++], st); } pv[ply] = MOVE_NONE; }