]> git.sesse.net Git - stockfish/blob - src/thread.h
Move ThreadsManager::exit() to d'tor
[stockfish] / src / thread.h
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
4   Copyright (C) 2008-2012 Marco Costalba, Joona Kiiski, Tord Romstad
5
6   Stockfish is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Stockfish is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #if !defined(THREAD_H_INCLUDED)
21 #define THREAD_H_INCLUDED
22
23 #include <set>
24 #include <vector>
25
26 #include "material.h"
27 #include "movepick.h"
28 #include "pawns.h"
29 #include "position.h"
30 #include "search.h"
31
32 const int MAX_THREADS = 32;
33 const int MAX_SPLITPOINTS_PER_THREAD = 8;
34
35 struct SplitPoint {
36
37   // Const data after split point has been setup
38   const Position* pos;
39   const Search::Stack* ss;
40   Depth depth;
41   Value beta;
42   int nodeType;
43   int master;
44   Move threatMove;
45
46   // Const pointers to shared data
47   MovePicker* mp;
48   SplitPoint* parent;
49
50
51   // Shared data
52   Lock lock;
53   volatile uint64_t slavesMask;
54   volatile int64_t nodes;
55   volatile Value alpha;
56   volatile Value bestValue;
57   volatile Move bestMove;
58   volatile int moveCount;
59   volatile bool cutoff;
60 };
61
62
63 /// Thread struct keeps together all the thread related stuff like locks, state
64 /// and especially split points. We also use per-thread pawn and material hash
65 /// tables so that once we get a pointer to an entry its life time is unlimited
66 /// and we don't have to care about someone changing the entry under our feet.
67
68 class Thread {
69
70   Thread(const Thread&);            // Only declared to disable the default ones
71   Thread& operator=(const Thread&); // that are not suitable in this case.
72
73   typedef void (Thread::* Fn) ();
74
75 public:
76   Thread(Fn fn);
77   ~Thread();
78
79   void wake_up();
80   bool cutoff_occurred() const;
81   bool is_available_to(int master) const;
82   void idle_loop(SplitPoint* sp_master);
83   void idle_loop() { idle_loop(NULL); } // Hack to allow storing in start_fn
84   void main_loop();
85   void timer_loop();
86   void wait_for_stop_or_ponderhit();
87
88   SplitPoint splitPoints[MAX_SPLITPOINTS_PER_THREAD];
89   MaterialInfoTable materialTable;
90   PawnInfoTable pawnTable;
91   int threadID;
92   int maxPly;
93   Lock sleepLock;
94   WaitCondition sleepCond;
95   NativeHandle handle;
96   Fn start_fn;
97   SplitPoint* volatile curSplitPoint;
98   volatile int splitPointsCnt;
99   volatile bool is_searching;
100   volatile bool do_sleep;
101   volatile bool do_exit;
102 };
103
104
105 /// ThreadsManager class handles all the threads related stuff like init, starting,
106 /// parking and, the most important, launching a slave thread at a split point.
107 /// All the access to shared thread data is done through this class.
108
109 class ThreadsManager {
110   /* As long as the single ThreadsManager object is defined as a global we don't
111      need to explicitly initialize to zero its data members because variables with
112      static storage duration are automatically set to zero before enter main()
113   */
114 public:
115   void init(); // No c'tor becuase Threads is static and we need stuff initialized
116   ~ThreadsManager();
117
118   Thread& operator[](int id) { return *threads[id]; }
119   bool use_sleeping_threads() const { return useSleepingThreads; }
120   int min_split_depth() const { return minimumSplitDepth; }
121   int size() const { return (int)threads.size(); }
122
123   void wake_up() const;
124   void sleep() const;
125   void read_uci_options();
126   bool available_slave_exists(int master) const;
127   void set_timer(int msec);
128   void stop_thinking();
129   void start_thinking(const Position& pos, const Search::LimitsType& limits,
130                       const std::set<Move>& = std::set<Move>(), bool async = false);
131
132   template <bool Fake>
133   Value split(Position& pos, Search::Stack* ss, Value alpha, Value beta, Value bestValue, Move* bestMove,
134               Depth depth, Move threatMove, int moveCount, MovePicker* mp, int nodeType);
135 private:
136   friend class Thread;
137
138   std::vector<Thread*> threads;
139   Thread* timer;
140   Lock splitLock;
141   WaitCondition sleepCond;
142   Depth minimumSplitDepth;
143   int maxThreadsPerSplitPoint;
144   bool useSleepingThreads;
145 };
146
147 extern ThreadsManager Threads;
148
149 #endif // !defined(THREAD_H_INCLUDED)