forked from psanse/BITSCAN
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbbintrinsic_sparse.h
More file actions
440 lines (368 loc) · 11.1 KB
/
bbintrinsic_sparse.h
File metadata and controls
440 lines (368 loc) · 11.1 KB
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
/*
* bbintrinsic_sparse.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 "bitboards.h"
using namespace std;
/////////////////////////////////
//
// Class BBIntrinS
// (Uses a number of optimizations for bit scanning)
//
///////////////////////////////////
class BBIntrinS: public BitBoardS{
public:
BBIntrinS (){};
explicit BBIntrinS (int popsize /*1 based*/, bool reset=true):BitBoardS(popsize,reset){}
BBIntrinS (const BBIntrinS& bbN):BitBoardS(bbN){}
void set_bbindex (int bbindex){m_scan.bbi=bbindex;} //refers to the position in the collection (not in the bitstring)
void set_posbit (int posbit){m_scan.pos=posbit;}
//////////////////////////////
// bitscanning
inline int lsbn64 () const;
inline int msbn64 () const;
inline int msbn64 (int& nElem) const;
inline int lsbn64 (int& nElem) const;
//scan setup
int init_scan (scan_types);
int init_scan_from (int from, scan_types sct); //currently only for the NON-DESTRUCTIVE case
//bit scan forward (destructive)
inline int next_bit_del ();
inline int next_bit_del (int& nBB); //nBB: index of bitblock in the bitstring (not in the collection)
inline int next_bit_del_pos (int& posBB); //posBB: position of bitblock in the collection (not the index of the element)
//bit scan forward (non destructive)
virtual inline int next_bit ();
inline int next_bit (int & nBB); //nBB: index of bitblock in the bitstring (not in the collection)
//bit scan backwards (non destructive)
virtual inline int previous_bit ();
//bit scan backwards (destructive)
inline int previous_bit_del ();
inline int previous_bit_del (int& nBB);
/////////////////
// Popcount
#ifdef POPCOUNT_64
virtual inline int popcn64 () const;
virtual inline int popcn64 (int nBit) const; //population size from (and including) nBit
#endif
//////////////////
/// data members
public:
struct scan_t{ //Cache memory for bitscanning optimization
scan_t():bbi(EMPTY_ELEM), pos(MASK_LIM){}
int bbi; //bitboard index in the collection (not in the bitstring)
int pos; //bit position for bitscan
};
scan_t m_scan;
};
///////////////////////
//
// INLINE FUNCTIONS
//
////////////////////////
#ifdef POPCOUNT_64
inline
int BBIntrinS::popcn64() const{
BITBOARD pc=0;
for(int i=0; i<m_aBB.size(); i++){
pc+=__popcnt64(m_aBB[i].bb);
}
return pc;
}
inline
int BBIntrinS::popcn64(int nBit) const{
//////////////////////////////
// population size from (and including) nBit onwards
BITBOARD pc=0;
int nBB=WDIV(nBit);
//find the biblock if it exists
velem_cit it=lower_bound(m_aBB.begin(), m_aBB.end(), elem(nBB), elem_less());
if(it!=m_aBB.end()){
if(it->index==nBB){
BITBOARD bb= it->bb&~Tables::mask_right[WMOD(nBit)];
pc+= __popcnt64(bb);
it++;
}
//searches in the rest of elements with greater index than nBB
for(; it!=m_aBB.end(); ++it){
pc+= __popcnt64(it->bb);
}
}
return pc;
}
#endif
inline int BBIntrinS::lsbn64() const{
unsigned long posbb;
for(int i=0; i<m_aBB.size(); i++){
if(_BitScanForward64(&posbb, m_aBB[i].bb))
return(posbb+ WMUL(m_aBB[i].index));
}
return EMPTY_ELEM;
}
inline int BBIntrinS::lsbn64(int& nElem) const{
////////////////////
// lsbn + returns in nElem the index in the collection if the bit string is not EMPTY
unsigned long posbb;
for(int i=0; i<m_aBB.size(); i++){
if(_BitScanForward64(&posbb, m_aBB[i].bb)){
nElem=i;
return(posbb+ WMUL(m_aBB[i].index));
}
}
return EMPTY_ELEM;
}
inline int BBIntrinS::msbn64() const{
////////////////////
// Returns the index in the collection if bitstring is not EMPTY
unsigned long posBB;
for(int i=m_aBB.size()-1; i>=0; i--){
//Siempre me queda la duda mas de si es mas eficiente comparar con 0
if(_BitScanReverse64(&posBB,m_aBB[i].bb))
return (posBB+WMUL(m_aBB[i].index));
}
return EMPTY_ELEM;
}
inline int BBIntrinS::msbn64(int& nElem) const{
////////////////////
// Returns the index in the collection if bitstring is not EMPTY
unsigned long posBB;
for(int i=m_aBB.size()-1; i>=0; i--){
//Siempre me queda la duda mas de si es mas eficiente comparar con 0
if(_BitScanReverse64(&posBB,m_aBB[i].bb)){
nElem=i;
return (posBB+WMUL(m_aBB[i].index));
}
}
return EMPTY_ELEM;
}
inline int BBIntrinS::next_bit() {
////////////////////////////
// date:5/9/2014
// non destructive bitscan for sparse bitstrings using intrinsics
// caches index in the collection and pos inside the bitblock
//
// comments
// 1-require previous assignment m_scan_bbi=0 and m_scan.pos=mask_lim
unsigned long posbb;
//search for next bit in the last block
if(_BitScanForward64(&posbb, m_aBB[m_scan.bbi].bb & Tables::mask_left[m_scan.pos])){
m_scan.pos =posbb;
return (posbb + WMUL(m_aBB[m_scan.bbi].index));
}else{ //search in the remaining blocks
for(int i=m_scan.bbi+1; i<m_aBB.size(); i++){
if(_BitScanForward64(&posbb,m_aBB[i].bb)){
m_scan.bbi=i;
m_scan.pos=posbb;
return (posbb+ WMUL(m_aBB[i].index));
}
}
}
return EMPTY_ELEM;
}
inline int BBIntrinS::next_bit(int& block_index) {
////////////////////////////
// date:5/9/2014
// non destructive bitscan for sparse bitstrings using intrinsics
// caches index in the collection and pos inside the bitblock
//
// comments
// 1-require previous assignment m_scan_bbi=0 and m_scan.pos=mask_lim
unsigned long posbb;
//search for next bit in the last block
if(_BitScanForward64(&posbb, m_aBB[m_scan.bbi].bb & Tables::mask_left[m_scan.pos])){
m_scan.pos =posbb;
block_index= m_aBB[m_scan.bbi].index;
return (posbb + WMUL(m_aBB[m_scan.bbi].index));
}else{ //search in the remaining blocks
for(int i=m_scan.bbi+1; i<m_aBB.size(); i++){
if(_BitScanForward64(&posbb,m_aBB[i].bb)){
m_scan.bbi=i;
m_scan.pos=posbb;
block_index=m_aBB[i].index;
return (posbb+ WMUL(m_aBB[i].index));
}
}
}
return EMPTY_ELEM;
}
inline int BBIntrinS::previous_bit () {
////////////////////////////
// date:5/9/2014
// Non destructive bitscan for sparse bitstrings using intrinsics
// caches index in the collection and pos inside the bitblock
//
// comments
// 1-require previous assignment m_scan_bbi=number of bitblocks-1 and m_scan.pos=WORD_SIZE
unsigned long posbb;
//search int the last table
if(_BitScanReverse64(&posbb, m_aBB[m_scan.bbi].bb & Tables::mask_right[m_scan.pos])){
m_scan.pos =posbb;
return (posbb + WMUL(m_aBB[m_scan.bbi].index));
}else{ //not found in the last table. search in the rest
for(int i=m_scan.bbi-1; i>=0; i--){
if(_BitScanReverse64(&posbb,m_aBB[i].bb)){
m_scan.bbi=i;
m_scan.pos=posbb;
return (posbb+ WMUL(m_aBB[i].index));
}
}
}
return EMPTY_ELEM;
}
inline int BBIntrinS::next_bit_del() {
////////////////////////////
//
// date: 23/3/12
// Destructive bitscan (scans and deletes each 1-bit) for sparse bitstrings using intrinsics
//
// COMMENTS
// 1-Requires previous assignment m_scan_bbi=0
unsigned long posbb;
for(int i=m_scan.bbi; i<m_aBB.size(); i++) {
if(_BitScanForward64(&posbb,m_aBB[i].bb)){
m_scan.bbi=i;
m_aBB[i].bb&=~Tables::mask[posbb]; //deleting before the return
return (posbb + WMUL(m_aBB[i].index));
}
}
return EMPTY_ELEM;
}
inline int BBIntrinS::next_bit_del(int& block_index) {
////////////////////////////
//
// date: 23/3/12
// Destructive bitscan for sparse bitstrings using intrinsics
//
// COMMENTS
// 1-Requires previous assignment m_scan_bbi=0
unsigned long posbb;
for(int i=m_scan.bbi; i<m_aBB.size(); i++) {
if(_BitScanForward64(&posbb,m_aBB[i].bb)){
m_scan.bbi=i;
block_index=m_aBB[i].index;
m_aBB[i].bb&=~Tables::mask[posbb]; //deleting before the return
return (posbb + WMUL(m_aBB[i].index));
}
}
return EMPTY_ELEM;
}
inline int BBIntrinS::next_bit_del_pos (int& posBB){
////////////////////////////
//
// date: 29/10/14
// Destructive bitscan which returns the position of the bitblock scanned in the collection
// (not the index attribute)
//
// COMMENTS
// 1-Requires previous assignment m_scan_bbi=0
unsigned long posbb;
for(int i=m_scan.bbi; i<m_aBB.size(); i++) {
if(_BitScanForward64(&posbb,m_aBB[i].bb)){
posBB=m_scan.bbi=i;
m_aBB[i].bb&=~Tables::mask[posbb]; //deleting before the return
return (posbb + WMUL(m_aBB[i].index));
}
}
return EMPTY_ELEM;
}
inline int BBIntrinS::previous_bit_del() {
////////////////////////////
//
// date: 23/3/12
// Destructive bitscan for sparse bitstrings using intrinsics
//
// COMMENTS
// 1-Requires previous assignment m_scan_bbi=number of bitblocks-1
unsigned long posbb;
for(int i=m_scan.bbi; i>=0; i--){
if(_BitScanReverse64(&posbb,m_aBB[i].bb)){
m_scan.bbi=i;
m_aBB[i].bb&=~Tables::mask[posbb]; //deleting before the return
return (posbb+WMUL(m_aBB[i].index));
}
}
return EMPTY_ELEM;
}
inline int BBIntrinS::previous_bit_del(int & bb_index) {
////////////////////////////
//
// date: 23/3/12
// Destructive bitscan for sparse bitstrings using intrinsics
//
// COMMENTS
// 1-Requires previous assignment m_scan_bbi=number of bitblocks-1
unsigned long posbb;
for(int i=m_scan.bbi; i>=0; i--){
if(_BitScanReverse64(&posbb,m_aBB[i].bb)){
m_scan.bbi=i;
bb_index=m_aBB[i].index;
m_aBB[i].bb&=~Tables::mask[posbb]; //deleting before the return
return (posbb+WMUL(m_aBB[i].index));
}
}
return EMPTY_ELEM;
}
inline
int BBIntrinS::init_scan (scan_types sct){
if(m_aBB.empty()) return EMPTY_ELEM; //necessary check since sparse bitstrings have empty semantics (i.e. sparse graphs)
switch(sct){
case NON_DESTRUCTIVE:
set_bbindex(0);
set_posbit(MASK_LIM);
break;
case NON_DESTRUCTIVE_REVERSE:
set_bbindex(m_aBB.size()-1);
set_posbit(WORD_SIZE);
break;
case DESTRUCTIVE:
set_bbindex(0);
break;
case DESTRUCTIVE_REVERSE:
set_bbindex(m_aBB.size()-1);
break;
default:
cerr<<"bad scan type"<<endl;
return -1;
}
return 0;
}
inline
int BBIntrinS::init_scan_from (int from, scan_types sct){
////////////////////////
// scans starting at from until the end of the bitarray
//
// REMARKS: at the moment, only working for the NON-DESTRUCTIVE case
pair<bool, int> p= find_pos(WDIV(from));
if(p.second==EMPTY_ELEM) return EMPTY_ELEM;
switch(sct){
case NON_DESTRUCTIVE:
case NON_DESTRUCTIVE_REVERSE:
set_bbindex(p.second);
(p.first)? set_posbit(WMOD(from)) : set_posbit(MASK_LIM);
break;
/*case DESTRUCTIVE:
case DESTRUCTIVE_REVERSE:
set_bbindex(p.second);
break;*/
default:
cerr<<"bad scan type"<<endl;
return -1;
}
return 0;
}