nodedb-query 0.0.4

Shared query evaluation engine for NodeDB — expressions, filters, functions, aggregations, window functions
Documentation
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
440
441
442
443
444
445
446
447
448
449
450
// ---------------------------------------------------------------------------
// AVX2 (x86_64) filter kernels
// ---------------------------------------------------------------------------

#[cfg(target_arch = "x86_64")]
use super::bitmask::words_for;
#[cfg(target_arch = "x86_64")]
use super::scalar::{
    CmpOp, scalar_cmp_f64, scalar_cmp_i64, scalar_eq_u32, scalar_ne_u32, scalar_range_i64,
};

// ---------------------------------------------------------------------------
// AVX2 — u32
// ---------------------------------------------------------------------------

#[cfg(target_arch = "x86_64")]
pub(super) fn avx2_eq_u32(values: &[u32], target: u32) -> Vec<u64> {
    if values.len() < 16 {
        return scalar_eq_u32(values, target);
    }
    unsafe { avx2_eq_u32_inner(values, target) }
}

#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn avx2_eq_u32_inner(values: &[u32], target: u32) -> Vec<u64> {
    use std::arch::x86_64::*;
    unsafe {
        let mut mask = vec![0u64; words_for(values.len())];
        let target_vec = _mm256_set1_epi32(target as i32);
        let chunks = values.len() / 8;
        let ptr = values.as_ptr() as *const i32;

        for chunk in 0..chunks {
            let vals = _mm256_loadu_si256(ptr.add(chunk * 8).cast());
            let cmp = _mm256_cmpeq_epi32(vals, target_vec);
            // movemask extracts the sign bit of each 8-bit element (32 bits).
            // We want one bit per 32-bit lane, so use movemask on bytes and
            // extract every 4th bit.
            let raw_mask = _mm256_movemask_epi8(cmp) as u32;
            // raw_mask has 32 bits (one per byte), we want 8 bits (one per
            // i32 lane). Take every 4th bit: bits 3,7,11,15,19,23,27,31.
            let mut bits: u8 = 0;
            for lane in 0..8u32 {
                if (raw_mask >> (lane * 4 + 3)) & 1 == 1 {
                    bits |= 1 << lane;
                }
            }
            let base_bit = chunk * 8;
            let word_idx = base_bit / 64;
            let bit_offset = base_bit % 64;
            mask[word_idx] |= (bits as u64) << bit_offset;
            if bit_offset > 56 {
                mask[word_idx + 1] |= (bits as u64) >> (64 - bit_offset);
            }
        }

        for i in (chunks * 8)..values.len() {
            if values[i] == target {
                mask[i / 64] |= 1u64 << (i % 64);
            }
        }

        mask
    }
}

#[cfg(target_arch = "x86_64")]
pub(super) fn avx2_ne_u32(values: &[u32], target: u32) -> Vec<u64> {
    if values.len() < 16 {
        return scalar_ne_u32(values, target);
    }
    unsafe { avx2_ne_u32_inner(values, target) }
}

#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn avx2_ne_u32_inner(values: &[u32], target: u32) -> Vec<u64> {
    use std::arch::x86_64::*;
    unsafe {
        let mut mask = vec![0u64; words_for(values.len())];
        let target_vec = _mm256_set1_epi32(target as i32);
        let chunks = values.len() / 8;
        let ptr = values.as_ptr() as *const i32;

        for chunk in 0..chunks {
            let vals = _mm256_loadu_si256(ptr.add(chunk * 8).cast());
            let eq = _mm256_cmpeq_epi32(vals, target_vec);
            // Invert: XOR with all-ones for NOT-equal.
            let ne = _mm256_xor_si256(eq, _mm256_set1_epi32(-1));
            let raw_mask = _mm256_movemask_epi8(ne) as u32;
            let mut bits: u8 = 0;
            for lane in 0..8u32 {
                if (raw_mask >> (lane * 4 + 3)) & 1 == 1 {
                    bits |= 1 << lane;
                }
            }
            let base_bit = chunk * 8;
            let word_idx = base_bit / 64;
            let bit_offset = base_bit % 64;
            mask[word_idx] |= (bits as u64) << bit_offset;
            if bit_offset > 56 {
                mask[word_idx + 1] |= (bits as u64) >> (64 - bit_offset);
            }
        }

        for i in (chunks * 8)..values.len() {
            if values[i] != target {
                mask[i / 64] |= 1u64 << (i % 64);
            }
        }

        mask
    }
}

// ---------------------------------------------------------------------------
// AVX2 — f64
//
// Each AVX2 chunk processes 4 f64 lanes.
// _mm256_cmp_pd produces a 256-bit result; _mm256_movemask_pd extracts
// the sign bits of each 64-bit lane as a 4-bit integer.
// ---------------------------------------------------------------------------

// Immediate constants for _mm256_cmp_pd (VEX-encoded, same encoding as SSE4.2).
#[cfg(target_arch = "x86_64")]
const _CMP_GT_OQ_AVX2: i32 = 30;
#[cfg(target_arch = "x86_64")]
const _CMP_GE_OQ_AVX2: i32 = 29;
#[cfg(target_arch = "x86_64")]
const _CMP_LT_OQ_AVX2: i32 = 17;
#[cfg(target_arch = "x86_64")]
const _CMP_LE_OQ_AVX2: i32 = 18;

#[cfg(target_arch = "x86_64")]
pub(super) fn avx2_gt_f64(values: &[f64], threshold: f64) -> Vec<u64> {
    if values.len() < 8 {
        return scalar_cmp_f64(values, threshold, CmpOp::Gt);
    }
    unsafe { avx2_cmp_f64_inner::<{ _CMP_GT_OQ_AVX2 }>(values, threshold) }
}

#[cfg(target_arch = "x86_64")]
pub(super) fn avx2_gte_f64(values: &[f64], threshold: f64) -> Vec<u64> {
    if values.len() < 8 {
        return scalar_cmp_f64(values, threshold, CmpOp::Gte);
    }
    unsafe { avx2_cmp_f64_inner::<{ _CMP_GE_OQ_AVX2 }>(values, threshold) }
}

#[cfg(target_arch = "x86_64")]
pub(super) fn avx2_lt_f64(values: &[f64], threshold: f64) -> Vec<u64> {
    if values.len() < 8 {
        return scalar_cmp_f64(values, threshold, CmpOp::Lt);
    }
    unsafe { avx2_cmp_f64_inner::<{ _CMP_LT_OQ_AVX2 }>(values, threshold) }
}

#[cfg(target_arch = "x86_64")]
pub(super) fn avx2_lte_f64(values: &[f64], threshold: f64) -> Vec<u64> {
    if values.len() < 8 {
        return scalar_cmp_f64(values, threshold, CmpOp::Lte);
    }
    unsafe { avx2_cmp_f64_inner::<{ _CMP_LE_OQ_AVX2 }>(values, threshold) }
}

#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn avx2_cmp_f64_inner<const IMM: i32>(values: &[f64], threshold: f64) -> Vec<u64> {
    use std::arch::x86_64::*;
    unsafe {
        let mut mask = vec![0u64; words_for(values.len())];
        let thresh_vec = _mm256_set1_pd(threshold);
        let chunks = values.len() / 4;
        let ptr = values.as_ptr();

        for chunk in 0..chunks {
            let vals = _mm256_loadu_pd(ptr.add(chunk * 4));
            let cmp = _mm256_cmp_pd::<IMM>(vals, thresh_vec);
            // movemask_pd: 4-bit result, one bit per 64-bit lane.
            let bits = _mm256_movemask_pd(cmp) as u8;
            let base_bit = chunk * 4;
            let word_idx = base_bit / 64;
            let bit_offset = base_bit % 64;
            mask[word_idx] |= (bits as u64) << bit_offset;
            // Overflow: bit_offset + 4 > 64, i.e. bit_offset > 60.
            if bit_offset > 60 {
                mask[word_idx + 1] |= (bits as u64) >> (64 - bit_offset);
            }
        }

        // Scalar tail.
        let scalar_op = match IMM {
            _CMP_GT_OQ_AVX2 => CmpOp::Gt,
            _CMP_GE_OQ_AVX2 => CmpOp::Gte,
            _CMP_LT_OQ_AVX2 => CmpOp::Lt,
            _ => CmpOp::Lte,
        };
        for i in (chunks * 4)..values.len() {
            let pass = match scalar_op {
                CmpOp::Gt => values[i] > threshold,
                CmpOp::Gte => values[i] >= threshold,
                CmpOp::Lt => values[i] < threshold,
                CmpOp::Lte => values[i] <= threshold,
            };
            if pass {
                mask[i / 64] |= 1u64 << (i % 64);
            }
        }

        mask
    }
}

// ---------------------------------------------------------------------------
// AVX2 — i64
//
// Each AVX2 chunk processes 4 i64 lanes.
// AVX2 has _mm256_cmpgt_epi64 but no cmpge/cmple/cmplt directly.
// - gt:  _mm256_cmpgt_epi64(vals, thresh)
// - lt:  _mm256_cmpgt_epi64(thresh, vals)   (swap operands)
// - gte: gt OR eq  (cmpgt | cmpeq)
// - lte: lt OR eq  (swap-cmpgt | cmpeq)
// ---------------------------------------------------------------------------

#[cfg(target_arch = "x86_64")]
pub(super) fn avx2_gt_i64(values: &[i64], threshold: i64) -> Vec<u64> {
    if values.len() < 8 {
        return scalar_cmp_i64(values, threshold, CmpOp::Gt);
    }
    unsafe { avx2_gt_i64_inner(values, threshold) }
}

#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn avx2_gt_i64_inner(values: &[i64], threshold: i64) -> Vec<u64> {
    use std::arch::x86_64::*;
    unsafe {
        let mut mask = vec![0u64; words_for(values.len())];
        let thresh_vec = _mm256_set1_epi64x(threshold);
        let chunks = values.len() / 4;
        let ptr = values.as_ptr();

        for chunk in 0..chunks {
            let vals = _mm256_loadu_si256(ptr.add(chunk * 4).cast());
            let cmp = _mm256_cmpgt_epi64(vals, thresh_vec);
            // Cast to f64 vector to use movemask_pd (extracts sign bits of 64-bit lanes).
            let bits = _mm256_movemask_pd(_mm256_castsi256_pd(cmp)) as u8;
            let base_bit = chunk * 4;
            let word_idx = base_bit / 64;
            let bit_offset = base_bit % 64;
            mask[word_idx] |= (bits as u64) << bit_offset;
            if bit_offset > 60 {
                mask[word_idx + 1] |= (bits as u64) >> (64 - bit_offset);
            }
        }

        for i in (chunks * 4)..values.len() {
            if values[i] > threshold {
                mask[i / 64] |= 1u64 << (i % 64);
            }
        }

        mask
    }
}

#[cfg(target_arch = "x86_64")]
pub(super) fn avx2_gte_i64(values: &[i64], threshold: i64) -> Vec<u64> {
    if values.len() < 8 {
        return scalar_cmp_i64(values, threshold, CmpOp::Gte);
    }
    unsafe { avx2_gte_i64_inner(values, threshold) }
}

#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn avx2_gte_i64_inner(values: &[i64], threshold: i64) -> Vec<u64> {
    use std::arch::x86_64::*;
    unsafe {
        let mut mask = vec![0u64; words_for(values.len())];
        let thresh_vec = _mm256_set1_epi64x(threshold);
        let chunks = values.len() / 4;
        let ptr = values.as_ptr();

        for chunk in 0..chunks {
            let vals = _mm256_loadu_si256(ptr.add(chunk * 4).cast());
            // gte = (vals > thresh) OR (vals == thresh).
            let gt = _mm256_cmpgt_epi64(vals, thresh_vec);
            let eq = _mm256_cmpeq_epi64(vals, thresh_vec);
            let cmp = _mm256_or_si256(gt, eq);
            let bits = _mm256_movemask_pd(_mm256_castsi256_pd(cmp)) as u8;
            let base_bit = chunk * 4;
            let word_idx = base_bit / 64;
            let bit_offset = base_bit % 64;
            mask[word_idx] |= (bits as u64) << bit_offset;
            if bit_offset > 60 {
                mask[word_idx + 1] |= (bits as u64) >> (64 - bit_offset);
            }
        }

        for i in (chunks * 4)..values.len() {
            if values[i] >= threshold {
                mask[i / 64] |= 1u64 << (i % 64);
            }
        }

        mask
    }
}

#[cfg(target_arch = "x86_64")]
pub(super) fn avx2_lt_i64(values: &[i64], threshold: i64) -> Vec<u64> {
    if values.len() < 8 {
        return scalar_cmp_i64(values, threshold, CmpOp::Lt);
    }
    unsafe { avx2_lt_i64_inner(values, threshold) }
}

#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn avx2_lt_i64_inner(values: &[i64], threshold: i64) -> Vec<u64> {
    use std::arch::x86_64::*;
    unsafe {
        let mut mask = vec![0u64; words_for(values.len())];
        let thresh_vec = _mm256_set1_epi64x(threshold);
        let chunks = values.len() / 4;
        let ptr = values.as_ptr();

        for chunk in 0..chunks {
            let vals = _mm256_loadu_si256(ptr.add(chunk * 4).cast());
            // lt = thresh > vals  (swap operands to cmpgt).
            let cmp = _mm256_cmpgt_epi64(thresh_vec, vals);
            let bits = _mm256_movemask_pd(_mm256_castsi256_pd(cmp)) as u8;
            let base_bit = chunk * 4;
            let word_idx = base_bit / 64;
            let bit_offset = base_bit % 64;
            mask[word_idx] |= (bits as u64) << bit_offset;
            if bit_offset > 60 {
                mask[word_idx + 1] |= (bits as u64) >> (64 - bit_offset);
            }
        }

        for i in (chunks * 4)..values.len() {
            if values[i] < threshold {
                mask[i / 64] |= 1u64 << (i % 64);
            }
        }

        mask
    }
}

#[cfg(target_arch = "x86_64")]
pub(super) fn avx2_lte_i64(values: &[i64], threshold: i64) -> Vec<u64> {
    if values.len() < 8 {
        return scalar_cmp_i64(values, threshold, CmpOp::Lte);
    }
    unsafe { avx2_lte_i64_inner(values, threshold) }
}

#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn avx2_lte_i64_inner(values: &[i64], threshold: i64) -> Vec<u64> {
    use std::arch::x86_64::*;
    unsafe {
        let mut mask = vec![0u64; words_for(values.len())];
        let thresh_vec = _mm256_set1_epi64x(threshold);
        let chunks = values.len() / 4;
        let ptr = values.as_ptr();

        for chunk in 0..chunks {
            let vals = _mm256_loadu_si256(ptr.add(chunk * 4).cast());
            // lte = (thresh > vals) OR (vals == thresh).
            let lt = _mm256_cmpgt_epi64(thresh_vec, vals);
            let eq = _mm256_cmpeq_epi64(vals, thresh_vec);
            let cmp = _mm256_or_si256(lt, eq);
            let bits = _mm256_movemask_pd(_mm256_castsi256_pd(cmp)) as u8;
            let base_bit = chunk * 4;
            let word_idx = base_bit / 64;
            let bit_offset = base_bit % 64;
            mask[word_idx] |= (bits as u64) << bit_offset;
            if bit_offset > 60 {
                mask[word_idx + 1] |= (bits as u64) >> (64 - bit_offset);
            }
        }

        for i in (chunks * 4)..values.len() {
            if values[i] <= threshold {
                mask[i / 64] |= 1u64 << (i % 64);
            }
        }

        mask
    }
}

/// Fused AVX2 range: `min <= value <= max` in one pass.
#[cfg(target_arch = "x86_64")]
pub(super) fn avx2_range_i64(values: &[i64], min: i64, max: i64) -> Vec<u64> {
    if values.len() < 8 {
        return scalar_range_i64(values, min, max);
    }
    unsafe { avx2_range_i64_inner(values, min, max) }
}

#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn avx2_range_i64_inner(values: &[i64], min: i64, max: i64) -> Vec<u64> {
    use std::arch::x86_64::*;
    unsafe {
        let mut mask = vec![0u64; words_for(values.len())];
        let min_vec = _mm256_set1_epi64x(min);
        let max_vec = _mm256_set1_epi64x(max);
        let chunks = values.len() / 4;
        let ptr = values.as_ptr();

        for chunk in 0..chunks {
            let vals = _mm256_loadu_si256(ptr.add(chunk * 4).cast());

            // gte_min = (vals > min) OR (vals == min)
            let gt_min = _mm256_cmpgt_epi64(vals, min_vec);
            let eq_min = _mm256_cmpeq_epi64(vals, min_vec);
            let gte_min = _mm256_or_si256(gt_min, eq_min);

            // lte_max = (max > vals) OR (vals == max)
            let lt_max = _mm256_cmpgt_epi64(max_vec, vals);
            let eq_max = _mm256_cmpeq_epi64(vals, max_vec);
            let lte_max = _mm256_or_si256(lt_max, eq_max);

            let cmp = _mm256_and_si256(gte_min, lte_max);
            let bits = _mm256_movemask_pd(_mm256_castsi256_pd(cmp)) as u8;
            let base_bit = chunk * 4;
            let word_idx = base_bit / 64;
            let bit_offset = base_bit % 64;
            mask[word_idx] |= (bits as u64) << bit_offset;
            if bit_offset > 60 {
                mask[word_idx + 1] |= (bits as u64) >> (64 - bit_offset);
            }
        }

        for i in (chunks * 4)..values.len() {
            if values[i] >= min && values[i] <= max {
                mask[i / 64] |= 1u64 << (i % 64);
            }
        }

        mask
    }
}