forked from psanse/BITSCAN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bbintrinsic.h
431 lines (354 loc) · 9.9 KB
/
bbintrinsic.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
/*
* bbintrinsic.h file from the BITSCAN library, a C++ library for bit set
* optimization. BITSCAN has been used to implement BBMC, a very
* succesful bit-parallel algorithm for exact maximum clique.
* (see license file for references)
*
* Copyright (C)
* Author: Pablo San Segundo
* Intelligent Control Research Group (CSIC-UPM)
*
* Permission to use, modify and distribute this software is
* granted provided that this copyright notice appears in all
* copies, in source code or in binaries. For precise terms
* see the accompanying LICENSE file.
*
* This software is provided "AS IS" with no warranty of any
* kind, express or implied, and with no claim as to its
* suitability for any purpose.
*
*/
#pragma once
#include "bitboardn.h"
#include <vector> //I/O
using namespace std;
/////////////////////////////////
//
// Class BBIntrin
// (Uses a number of optimizations for bit scanning)
//
///////////////////////////////////
class BBIntrin: public BitBoardN{
public:
struct scan_t{ //For bitscanning optimization
scan_t():bbi(EMPTY_ELEM), pos(MASK_LIM){}
int bbi; //bitboard index
int pos; //bit position for bitscan
};
BBIntrin (){};
BBIntrin (int popsize /*1 based*/, bool reset=true):BitBoardN(popsize,reset){}
BBIntrin (const BBIntrin& bbN):BitBoardN(bbN){}
BBIntrin (const std::vector<int>& v): BitBoardN(v){}
~BBIntrin (){}
void set_bbindex (int bbindex){m_scan.bbi=bbindex;}
void set_posbit (int posbit){m_scan.pos=posbit;}
//////////////////////////////
// bitscanning
inline int lsbn64 () const;
inline int msbn64 () const;
//bit scan forward (destructive)
int init_scan (scan_types);
virtual int init_scan_from (int from, scan_types);
virtual inline int next_bit_del ();
inline int next_bit_del (int& nBB /* table index*/);
inline int next_bit_del (int& nBB, BBIntrin& bbN_del);
//bit scan forward (non destructive)
virtual inline int next_bit ();
virtual inline int next_bit (int &);
inline int next_bit (int &, BBIntrin& );
//bit scan backwards (non destructive)
inline int previous_bit ();
//bit scan backwards (destructive)
virtual inline int previous_bit_del ();
inline int previous_bit_del (int& nBB);
inline int previous_bit_del (int& nBB, BBIntrin& del );
/////////////////
// Popcount
#ifdef POPCOUNT_64
inline int popcn64 () const;
inline int popcn64 (int nBit/*0 based*/) const;
#endif
//////////////////
/// data members
scan_t m_scan;
};
///////////////////////
//
// INLINE FUNCTIONS
//
////////////////////////
inline int BBIntrin::next_bit(int &nBB_new) {
////////////////////////////
// Date:23/3/2012
// BitScan not destructive
// Version that use static data of the last bit position and the last table
//
// COMMENTS
// 1-Require previous assignment BitBoardN::scan=0 and BBIntrin::scanv=MASK_LIM
unsigned long posInBB;
//Search int the last table
if(_BitScanForward64(&posInBB, m_aBB[m_scan.bbi] & Tables::mask_left[m_scan.pos])){
m_scan.pos =posInBB;
nBB_new=m_scan.bbi;
return (posInBB + WMUL(m_scan.bbi));
}else{ //Not found in the last table. Search in the rest
for(int i=m_scan.bbi+1; i<m_nBB; i++){
if(_BitScanForward64(&posInBB,m_aBB[i])){
m_scan.bbi=i;
m_scan.pos=posInBB;
nBB_new=i;
return (posInBB+ WMUL(i));
}
}
}
return EMPTY_ELEM;
}
inline int BBIntrin::next_bit(int &nBB_new, BBIntrin& bbN_del ) {
////////////////////////////
// Date:30/3/2012
// BitScan not destructive
// Version that use static data of the last bit position and the last table
//
// COMMENTS
// 1-Require previous assignment BitBoardN::scan=0 and BitBoardN::scanv=MASK_LIM
unsigned long posInBB;
//Search int the last table
if(_BitScanForward64(&posInBB, m_aBB[m_scan.bbi] & Tables::mask_left[m_scan.pos])){
m_scan.pos =posInBB;
nBB_new=m_scan.bbi;
bbN_del.m_aBB[m_scan.bbi]&=~Tables::mask[posInBB];
return (posInBB + WMUL(m_scan.bbi));
}else{ //Not found in the last table. Search in the rest
for(int i=m_scan.bbi+1; i<m_nBB; i++){
if(_BitScanForward64(&posInBB,m_aBB[i])){
m_scan.bbi=i;
m_scan.pos=posInBB;
nBB_new=i;
bbN_del.m_aBB[i]&=~Tables::mask[posInBB];
return (posInBB+ WMUL(i));
}
}
}
return EMPTY_ELEM;
}
inline int BBIntrin::next_bit() {
////////////////////////////
// Date:23/3/2012
// BitScan not destructive
// Version that use static data of the last bit position and the last table
//
// COMMENTS
// 1-Require previous assignment m_scan_bbl=0 and m_scan.pos=MASK_LIM
unsigned long posInBB;
//Search for next bit in the last block
if(_BitScanForward64(&posInBB, m_aBB[m_scan.bbi] & Tables::mask_left[m_scan.pos])){
m_scan.pos =posInBB;
return (posInBB + WMUL(m_scan.bbi));
}else{ //Search in the remaining blocks
for(int i=m_scan.bbi+1; i<m_nBB; i++){
if(_BitScanForward64(&posInBB,m_aBB[i])){
m_scan.bbi=i;
m_scan.pos=posInBB;
return (posInBB+ WMUL(i));
}
}
}
return EMPTY_ELEM;
}
inline int BBIntrin::previous_bit () {
////////////////////////////
// Date:13/4/2012
// BitScan not destructive in reverse order (end-->begin)
//
// COMMENTS
// 1-Require previous assignment BitBoardN::scan=0 and BitBoardN::scanv=MASK_LIM
unsigned long posInBB;
//Search int the last table
if(_BitScanReverse64(&posInBB, m_aBB[m_scan.bbi] & Tables::mask_right[m_scan.pos])){
m_scan.pos =posInBB;
return (posInBB + WMUL(m_scan.bbi));
}else{ //Not found in the last table. Search in the rest
for(int i=m_scan.bbi-1; i>=0; i--){
if(_BitScanReverse64(&posInBB,m_aBB[i])){
m_scan.bbi=i;
m_scan.pos=posInBB;
return (posInBB+ WMUL(i));
}
}
}
return EMPTY_ELEM;
}
inline int BBIntrin::previous_bit_del(int& nBB, BBIntrin& del) {
//////////////
// BitScan DI it also erase the returned bit of the table passed
unsigned long posInBB;
for(int i=m_scan.bbi; i>=0; i--){
if(_BitScanReverse64(&posInBB,m_aBB[i])){
m_scan.bbi=i;
m_aBB[i]&=~Tables::mask[posInBB]; //Deleting before the return
del.m_aBB[i]&=~Tables::mask[posInBB];
nBB=i;
return (posInBB+WMUL(i));
}
}
return EMPTY_ELEM;
}
inline int BBIntrin::previous_bit_del(int& nBB) {
//////////////
// BitScan DI
unsigned long posInBB;
for(int i=m_scan.bbi; i>=0; i--){
if(_BitScanReverse64(&posInBB,m_aBB[i])){
m_scan.bbi=i;
m_aBB[i]&=~Tables::mask[posInBB]; //Deleting before the return
nBB=i;
return (posInBB+WMUL(i));
}
}
return EMPTY_ELEM;
}
inline int BBIntrin::previous_bit_del() {
//////////////
// BitScan DI
unsigned long posInBB;
for(int i=m_scan.bbi; i>=0; i--){
if(_BitScanReverse64(&posInBB,m_aBB[i])){
m_scan.bbi=i;
m_aBB[i]&=~Tables::mask[posInBB]; //Deleting before the return
return (posInBB+WMUL(i));
}
}
return EMPTY_ELEM;
}
inline
int BBIntrin::init_scan(scan_types sct){
switch(sct){
case NON_DESTRUCTIVE:
set_bbindex(0);
set_posbit(MASK_LIM);
break;
case NON_DESTRUCTIVE_REVERSE:
set_bbindex(m_nBB-1);
set_posbit(WORD_SIZE); //mask_right[WORD_SIZE]=ONE
break;
case DESTRUCTIVE:
set_bbindex(0);
break;
case DESTRUCTIVE_REVERSE:
set_bbindex(m_nBB-1);
break;
default:
cerr<<"bad scan type"<<endl;
return -1;
}
return 0;
}
inline
int BBIntrin::init_scan_from (int from, scan_types sct){
switch(sct){
case NON_DESTRUCTIVE:
case NON_DESTRUCTIVE_REVERSE:
set_bbindex(WDIV(from));
set_posbit(WMOD(from));
break;
case DESTRUCTIVE:
case DESTRUCTIVE_REVERSE:
set_bbindex(WDIV(from));
break;
default:
cerr<<"bad scan type"<<endl;
return -1;
}
return 0;
}
inline int BBIntrin::next_bit_del() {
////////////////////////////
//
// Date: 23/3/12
// BitScan with Delete (D- erase the bit scanned) and Intrinsic
//
// COMMENTS: New variable static scan which stores index of every BB
unsigned long posInBB;
for(int i=m_scan.bbi; i<m_nBB; i++) {
if(_BitScanForward64(&posInBB,m_aBB[i])){
m_scan.bbi=i;
m_aBB[i]&=~Tables::mask[posInBB]; //Deletes the current bit before returning
return (posInBB+WMUL(i));
}
}
return EMPTY_ELEM;
}
inline int BBIntrin::msbn64() const{
////////////////////////////
//
// Date: 30/3/12
// Return the last bit
//
// COMMENTS: New variable static scan which stores index of every BB
unsigned long posInBB;
for(int i=m_nBB-1; i>=0; i--){
//Siempre me queda la duda mas de si es mas eficiente comparar con 0
if(_BitScanReverse64(&posInBB,m_aBB[i]))
return (posInBB+WMUL(i));
}
return EMPTY_ELEM;
}
inline int BBIntrin::next_bit_del(int& nBB) {
//////////////
// Also return the number of table
unsigned long posInBB;
for(int i=m_scan.bbi; i<m_nBB; i++) {
if(_BitScanForward64(&posInBB,m_aBB[i])){
m_scan.bbi=i;
m_aBB[i]&=~Tables::mask[posInBB]; //Deleting before the return
nBB=i;
return (posInBB+WMUL(i));
}
}
return EMPTY_ELEM;
}
inline int BBIntrin::next_bit_del(int& nBB, BBIntrin& bbN_del) {
//////////////
// BitScan DI it also erase the returned bit of the table passed
unsigned long posInBB;
for(int i=m_scan.bbi; i<m_nBB; i++){
if(_BitScanForward64(&posInBB,m_aBB[i])){
m_scan.bbi=i;
m_aBB[i]&=~Tables::mask[posInBB]; //Deleting before the return
bbN_del.m_aBB[i]&=~Tables::mask[posInBB];
nBB=i;
return (posInBB+WMUL(i));
}
}
return EMPTY_ELEM;
}
inline int BBIntrin::lsbn64() const{
unsigned long posBB;
for(int i=0; i<m_nBB; i++){
if(_BitScanForward64(&posBB, m_aBB[i]))
return(posBB+ WMUL(i));
}
return EMPTY_ELEM;
}
#ifdef POPCOUNT_64
inline int BBIntrin::popcn64() const{
BITBOARD pc=0;
for(int i=0; i<m_nBB; i++){
pc+=__popcnt64(m_aBB[i]);
}
return pc;
}
inline int BBIntrin::popcn64(int nBit) const{
/////////////////////////
// Population size from nBit(included) onwards
BITBOARD pc=0;
int nBB=WDIV(nBit);
for(int i=nBB+1; i<m_nBB; i++){
pc+=__popcnt64(m_aBB[i]);
}
//special case of nBit bit block
BITBOARD bb=m_aBB[nBB]&~Tables::mask_right[WMOD(nBit)];
pc+=__popcnt64(bb);
return pc;
}
#endif